Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/evuez/synolopy

:snake: :electric_plug:
https://github.com/evuez/synolopy

Last synced: 1 day ago
JSON representation

:snake: :electric_plug:

Awesome Lists containing this project

README

        

# synolopy

A very basic Python wrapper for *some* of the Synology APIs.

Note that this is not a fork from [Thavel's Synolopy](https://pypi.python.org/pypi/synolopy), I'm just too lazy to find another name.

## Start a download

```python
ds = DownloadStationTask(
'http://nas-ip:5000/webapi/',
('username', 'password')
)
ds.login()
ds.create(uri="magnetlink / http / whatever")
ds.create(file="filepath")
ds.logout()
```