Metadata-Version: 1.0
Name: sbt-python-client
Version: 1.0.3
Summary: A python implementation of solutionsbytext REST API
Home-page: https://github.com/sijanonly/sbt-python-client
Author: Sijan Bhandari
Author-email: sijanonly@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: =====================================================================
        sbt-python-client: Wrapper for consuming `solutions by text REST API <https://www.solutionsbytext.com/api-support/api-documentation/>`_.
        =====================================================================
        
        sbt-python-client implements solutionsbytext REST API for python. Typical usage
        often looks like this : 
        
        .. code-block:: python
        
                from solutions_by_text import create_security_token, carrier
        
                API_KEY = '<API_KEY_PROVIDED_BY_SBT>'
        
                # use 'ui' for production and 'test' for stagging APIs
                STAGE = 'test'
         
                security_token = create_security_token(API_KEY, STAGE)
        
                carrier_object = carrier.CarrierLookUp(
                    security_token=security_token,
                    org_code='ORG_CODE',
                    stage=STAGE,
                    phone='<PHONE_NUMBER>')
                
                response = carrier_object.get()
        
Platform: UNKNOWN
