Metadata-Version: 2.1
Name: chimoney-py
Version: 0.0.1
Summary: A Python package for Chimoney
Home-page: https://github.com/thelimeskies/chimoney-py
Author: Asikhalaye Samuel
Author-email: samuelasikhalaye@gmail.com
License: MIT
Description: # PyChimoney
        
        pychimoney is a python wrapper for <a href="https://chimoney.io"> Chimoney </a>
        
            - Account (Done)
            - Info (Done)
            - Payout(Done)
            - Mobile Money (Done)
            - Wallet (Done)
            - Sub-Account (Done)
            - Redeem (Done)
        
        ## Getting Started
            - Register with <a href="https://chimoney.io"> Chimoney </a>
            - Request for API KEY from support
            - set Your "CHIMONEY_AUTH_KEY" environment variable
        
        ## Installing 
            - pip install pychimoney
        ### OR
            - git clone "the repo"
            - cd pychimoney
            - python setup.py install or
            - pip3 install .
        
        ## Usage
        #### Importing the package
        ```python
        from pychimoney import Chimoney
        ```
        #### Creating an instance of the Chimoney class
        ```python
        chimoney = Chimoney()
        ```
        
        #### Full Example
        ```python
            from pychimoney import Chimoney
            import os
        
            # Initialize Chimoney
            chimoney = Chimoney.set_api_key("CHIMONEY_AUTH_KEY")
        
            # ping Chimoney
            chimoney.ping()
        ```
         #### Using the Account API
         ```python
        
            chimoney.account.required_function(params)
        ```
        
        ## TODO
        
        - [ ] Add all Endpoints
        - [ ] Write Unit Tests
        - [ ] Package the Library
        - [ ] Add to Pip
        - [ ] Add Pytest and Covrage for Test
        - [ ] Documentation
        
Keywords: Chimoney,Python,Chimoney-Python,Chimoney Python,Chimoney Python Wrapper
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: Topic :: Internet
Requires-Python: >=3.6
Description-Content-Type: text/markdown
