Metadata-Version: 2.1
Name: pysendyit
Version: 0.1.2
Summary: Un-Official Sendyit Python wrapper
Home-page: https://github.com/0x6f736f646f/sendit-python
Author: Rodney Osodo
Author-email: blackd0t@protonmail.com
License: MIT
Download-URL: http://pypi.python.org/pypi/pysendy/
Description: # Unofficial Sendy python API Wrapper
        The wrapper provides convenient access to the [Sendy Logistics API](https://www.sendyit.com/) from applications written in server-side python.
        
        ![Testing](https://github.com/0x6f736f646f/sendyit-python/workflows/Testing/badge.svg)
        ![Creating a Release](https://github.com/0x6f736f646f/sendyit-python/workflows/Creating%20a%20Release/badge.svg)
        ![Upload Python Package](https://github.com/0x6f736f646f/sendyit-python/workflows/Upload%20Python%20Package/badge.svg)
        [![Coverage Status](https://coveralls.io/repos/github/0x6f736f646f/sendyit-python/badge.svg?branch=master)](https://coveralls.io/github/0x6f736f646f/sendyit-python?branch=master)
        [![Build Status](https://travis-ci.com/0x6f736f646f/sendyit-python.svg?branch=master)](https://travis-ci.com/0x6f736f646f/sendyit-python)
        [![Maintainability](https://api.codeclimate.com/v1/badges/6c6702b7007a11eb203f/maintainability)](https://codeclimate.com/github/0x6f736f646f/sendyit-python/maintainability)
        
        ## Installation
        ```sh
        pip install pysendyit
        ```
        
        ## Usage
        In order to run the demo, export the the following values to your environment. They can be found/generated at the API Dashboard.
        ```bash
        export API_USERNAME="{your-api-username}"
        export API_KEY="{your-api-key}"
        export BASE_URL="{your-base-url}"
        ```
        
        ```python
        from pysendyit.pysendyit import Sendy
        import os
        
        # Creating an instance of the Sendy Class
        sendy = Sendy(api_username=os.getenv('API_USERNAME'), api_key=os.getenv('API_KEY'), base_url=os.getenv('BASE_URL'))
        
        # Printing response
        print(sendy.track_or_cancel_delivery(command="track", order_no="AA2395374", request_token_id="request_token_id"))
        
        ```
        
        ## Contributing
        
        Please read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details on our code of conduct, and the process for submitting pull requests to us.
        
        ## License
        
        This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
        
        ## Acknowledgments
        
        * Sendy Logistics 
        
Keywords: pysendyit sendy wrapper api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
