Metadata-Version: 2.1
Name: finolog-sdk
Version: 1.0.1b0
Summary: Wrapper for working with Finolog service API
Home-page: https://github.com/RTHeLL/finolog-sdk
Download-URL: https://github.com/RTHeLL/finolog-sdk/archive/master.zip
Author: Kinder (RTHeLL)
Author-email: k1ndermail@ya.ru
License: Apache License, Version 2.0, see LICENSE file
Keywords: wrapper,finance,finolog
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown

# Finolog Python API

Wrapper for working with Finolog service API

### Installation
You can install or upgrade package with:
```
$ pip install finolog-sdk --upgrade
```
Or you can install from source with:
```
$ git clone https://github.com/RTHeLL/finolog-sdk
$ cd finolog-sdk
$ python setup.py install
```
...or install from source buth with pip
```
$ pip install git+https://github.com/RTHeLL/finolog-sdk
```
### Example

```python
from finolog.services import FinologService 


def main():
    client = FinologService(api_token='YOUR TOKEN', biz_id=123)
    documents = client.document.get_documents()
    print(documents)


main()
```


## Bugs

If you have any problems, please create Issues [here](https://github.com/RTHeLL/finolog-sdk/issues)  
