Metadata-Version: 1.1
Name: tplcentral
Version: 0.1.1
Summary: 3PL REST API Client
Home-page: https://github.com/candidco/python-tpl
Author: Dhinesh D
Author-email: dvdhinesh.mail@gmail.com
License: MIT
Description: TPL Python API
        ==============
        
        A Python wrapper for the 3PL Central REST API
        
        Usage
        -----
        
        set up a `.env` file in the root of the project:
        
        .. code-block:: python
        
            BASE_URL="https://secure-wms.com" 
            AUTH_PATH="AuthServer/api/Token"
            CLIENT_ID="your-id"
            CLIENT_SECRET="your-secret"
            FACILITY_ID=99
            TPL_KEY="your-tpl-key"
            GRANT_TYPE="client_credentials"
            USER_LOGIN_ID="name-this-whatever-you-want"
            ROUTING_INFO_ACCOUNT_NUMBER="ups-account-number"
        
        Verify that you can access the api by running 
        
        .. code-block:: python
            
            python3 -m verify_credentials
        
        
        
        Then, run the following get a list of methods you can try out, with a handy run-in-place CLI:
        
        
        .. code-block:: shell
            
            python3 -m examples
        
        
        .. code-block::
        
            Which endpoint do you want to try?
            1) cancel_test_order
        
            2) create_test_item
        
            3) create_test_order
        
            4) get_carriers_list
        
            5) get_order
        
            Enter a number:
        
        
        
        License
        -------
        
        MIT
        
        See LICENSE for more details
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
