Metadata-Version: 2.1
Name: mediaaccount
Version: 0.8.0
Summary: Provides easy Acces to MediaAccount Api
Home-page: https://github.com/ckrowiorsch/mediaaccount-py
Author: Christian Krowiorsch
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ckrowiorsch/mediaaccount-py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# MediaAccount Python Client

## Usage

```python
import datetime

apiKey = '123456789'
mediaAccount = MediaAccountClient(key=apiKey)

# raw client
(articles, nextPageLink, count) = mediaAccount.articles('ImportDatum', von=datetime(2021,1,1), bis=datetime(2021,2,1), maxItems=10)
(articles, nextPageLink, count) = mediaAccount.articleNext(nextPageLink)

```

## Development

### Build
```bash
    python -m build

    python -m twine upload --repository testpypi dist/*


```

### TODO

* Iterator
* Highlevel API #3
* V3 API #4


