Metadata-Version: 2.1
Name: getmyinvoices
Version: 1.0.1
Summary: A python client for the GetMyInvoices API
Home-page: https://github.com/getmyinvoices/accounts-api-python
Author: Ben Barten
Author-email: bba@fino.digital
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: urllib3 (==1.24.2)

# accounts-api-python

This repository serves as a python API client for the GetMyInvoices API v2. 
Visit the [documentation](https://api.getmyinvoices.com/accounts/v2/doc/#)
for further information.


### Install
To simply integrate this library into your project, you can install it via 
[pip](https://pypi.org/project/pip/): 
```
pip install getmyinvoices
```

### How to use
To initiate an API client, create an `GMI` instance with an access token:
```
GMI("XXXX-XXXX-XXXX-XXXX-XXXX")
```

Example usage:
```
gmi = GMI("XXXX-XXXX-XXXX-XXXX-XXXX")
gmi.api_status()
```

##### Maintainer
[Ben Barten](mailto:bba@fino.digital)


