Metadata-Version: 2.1
Name: monobankua
Version: 0.0.6
Summary: Monobank.ua API client
Home-page: https://github.com/inbalboa/python-monobankua
Author: Sergey Shlyapugin
Author-email: shlyapugin@gmail.com
License: GPL version 3
Description: # [python-monobankua](https://pypi.org/project/monobankua/)
        
        Python client library for [Monobank](https://monobank.ua/) [API](https://api.monobank.ua/docs/).
        
        ## Installation
        
        ```
        pip3 install monobankua
        ```
        
        ## Requirements
        ```
        * python >= 3.7
        * requests >= 2.21
        ```
        
        ## Usage
        
        1. Create your token at https://api.monobank.ua/
        2. Use it to initialize client. Sample code:
        
        ```python
        from datetime import datetime
        from monobankua import Monobank
          
        TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
        
        monobank = Monobank(TOKEN)
        
        currencies_info = monobank.currencies_info()
        print(*currencies_info, sep='\n')
        
        client_name, accounts = monobank.client_info()
        print(client_name)
        
        for account in accounts:
            print(f'{account.currency.name}: {account}')
            statements = monobank.statements(account.id, datetime(2019, 6, 25))
            print(*statements, sep='\n')
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7,<4.0
Description-Content-Type: text/markdown
