easybill-rest

easybill_rest is a library to work with the easybill REST API (https://www.easybill.de/api/)


Keywords
easybill, python, rest
License
MIT
Install
pip install easybill-rest==0.4.1

Documentation

easybill_rest (py-ebrest)

Generic badge Generic badge PyPI - Python Version Generic badge Build Status

easybill_rest is a library to work with the easybill REST API (https://www.easybill.de/api/) written in Python.

All Resources are available.

The library supports only the Bearer Authentication and calls the API only through HTTPS.

pip install easybill_rest

Usage

from easybill_rest import Client


client = Client("API-KEY")
result = client.documents().get_document("2")

# Returns the document model. Therefore, a field "title" is included in the dict.
print(result['title'])