Metadata-Version: 2.1
Name: mediaaccount
Version: 0.8.10
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

Documentation for the api hier: <http://api.media-account.de/>

## 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)

# full request
scroll = client.scroll('ImportDatum', von = '04.08.2021', bis = '05.08.2021', maxItems=1000)
articlesAll = [i[0] for i in scroll]
```

## Development

### Build
```bash
    # publish to test
    ./publish.sh test

    # publish to prod
    ./publish.sh prod
```

### Roadmap

* Integration Api-V3


