Metadata-Version: 1.1
Name: Ingresse
Version: 0.1
Summary: Ingresse Python SDK for great usage
Home-page: https://www.ingresse.com/
Author: Ingresse
Author-email: devel@ingresse.com
License: UNKNOWN
Description: # Ingresse Python SDK
        
        Ingresse Python SDK is what you were missing to help you out with those coding using what is the best in ticketing technology.
        
        ## Quick start
        
        After install, Import ingresse SDK to your application and set an object with your API keys.
        
        ```python
        import ingresse
        
        # Configurate SiftScience SDK
        client = ingresse.Client(
            public_key= <YOU_PUBLIC_KEY>,
            private_key= <YOU_PRIVATE_KEY>
        )
        
        # For /event/123456 request, use
        response = client.getEvent(123456)
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
