Metadata-Version: 2.1
Name: free-kassa-py
Version: 1.0.1
Summary: FreeKassa python 3 client
Home-page: https://github.com/Churakovmike/free-kassa-py
Author: Mikhail Churakov
Author-email: churakovmike@mail.ru
License: UNKNOWN
Project-URL: Source, https://github.com/Churakovmike/free-kassa-py
Description: 
        FreeKassa API client
        ====================
        
        Installation
        -------------
        Install this package with pip
        ```commandline
        pip install free-kassa-py
        ```
        
        Usage
        -----
        ```python
        from freekassa import FreeKassaApi
        
        client = FreeKassaApi(
            first_secret='first_secret_key',
            second_secret='second_secret_key',
            merchant_id='merchant_id',
            wallet_id='wallet_id')
        
        balance = client.get_balance()
        ```
        
Keywords: freekassa
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >3.4
Description-Content-Type: text/markdown
