Metadata-Version: 2.1
Name: onlyoffice
Version: 0.0.2
Summary: Python API for OnlyOffice.
Home-page: https://github.com/casiez/onlyoffice
Author: Géry Casiez
Author-email: gery.casiez@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# onlyoffice

Provides a python API for OnlyOffice API

## Install
```pip install onlyoffice --upgrade```

Work in progress to provide a python API for the [OnlyOffice API](https://api.onlyoffice.com/portals/method/)

## Minimal example

```
import onlyoffice
oo = onlyoffice.OnlyOffice('https://yourportal.onlyoffice.com', 'username', 'password')
# download file ID 123
oo.download(['123'], 'file.zip')

```

## Supported commands
Read [onlyoffice/OnlyOffice.py](onlyoffice/OnlyOffice.py)

