Metadata-Version: 2.1
Name: dmponline
Version: 0.0.1
Summary: Python interface to DMPonline API
Author: Kees den Heijer
Author-email: c.denheijer@tudelft.nl
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# DMPonline

A Python interface to the DMPonline API.

Usage example:

```python
from dmponline import DMPonline

# initialize DMPonline class
dmp_api = DMPonline(<YOUR-DMPONLINE-API-TOKEN>, token_user=<YOUR-DMPONLINE-USER-EMAIL>)
# retreive pandas dataframe with all DMPs in your organization
dmps = dmp_api.plan_statistics(params={'remove_tests': 'false'})
```

## Command line
The package also ships a command line script to retreive an overview of all questions in a particular DMP.

Usage example:

```shell
question_overview -i DMPONLINE_PLAN_ID -t <YOUR-DMPONLINE-API-TOKEN>
```
