Metadata-Version: 2.1
Name: easybill_rest
Version: 0.1.6
Summary: easybill_rest is a library to work with the easybill REST API (https://www.easybill.de/api/)
Home-page: https://github.com/BolZer/py-ebrest
Author: Jan Noehles (bolZer)
Author-email: noehles@easybill.de
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Provides-Extra: dev

# easybill_rest (py-ebrest)
[![Generic badge](https://img.shields.io/badge/Version-0.1.5-important.svg)]()
[![Generic badge](https://img.shields.io/badge/coverage-97%25-success.svg)]()
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/easybill_rest.svg)
[![Generic badge](https://img.shields.io/badge/License-MIT-blue.svg)]()
[![Build Status](https://travis-ci.com/BolZer/py-ebrest.svg?branch=master)](https://travis-ci.com/BolZer/py-ebrest)

`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`.

```bash
pip install easybill_rest
```


## Usage

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

```

