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
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'])