Metadata-Version: 2.1
Name: eazysdk
Version: 1.2.2
Summary: A Python SDK client to interact with Eazy Customer Manager 3
Home-page: https://github.com/EazyCollectServices/EazyCollectSDK-Python
Author: Eazy Collect
Author-email: help@accesspaysuite.com
License: UNKNOWN
Description: # EazySDK - Python client
        Welcome to the **EazySDK** repository.  EazySDK is an integration of the 
        [Eazy Collect API version 3](https://eazycollectservices.github.io/EazyCollectAPIv3/) built in Python. Its core purpose is to provide a framework for developers already working with Eazy Collect to integrate Eazy Customer Manager into their platform. The framework provides functions designed to speed up the integration process between a developers Customer Relationship Manager and Eazy Collect. Getting started is as simple as providing user specific settings, and making your first call to Eazy Customer Manager should take less than a minute.
        
        ## Requirements
         - python (3.5 >=)
         - requests (2.21.0 >=)
        
        ## Integrating EazySDK into your application
        The integration process is simple, and involves importing EazySDK into your 
         virtual environment and configuring some settings. The most basic 
        configuration can be seen below.
        
            >> pip install eazysdk
             
            import eazysdk
            
            client = eazysdk.EazySDK()
            
            client.settings.current_environment['env'] = 'playpen'  
            client.settings.playpen_client_details['client_code'] = '{client_code}'  
            client.settings.playpen_client_details['api_key'] = '{api_key}'
          
            response = client.get.customers()
            print(response)
        
        ## Documentation
        All functions in EazySDK possess their own documentation, and can be fetched by calling `help(function)`. The documentation can also be [found on GitHub](https://github.com/EazyCollectServices/EazyCollectSDK-Python/tree/master/docs), or in the /docs directory of the package.
        
        ## Issues
        If you find any issues with EazySDK, please [raise an issue on GitHub](https://github.com/EazyCollectServices/EazyCollectSDK-Python/issues/new) detailing the issue. If this is not possible, alternatively email help@eazycollect.co.uk with as much information as you are able to provide.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
