https://github.com/evuez/synolopy
:snake: :electric_plug:
https://github.com/evuez/synolopy
Last synced: about 1 year ago
JSON representation
:snake: :electric_plug:
- Host: GitHub
- URL: https://github.com/evuez/synolopy
- Owner: evuez
- License: mit
- Created: 2015-05-05T09:17:20.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-25T13:06:45.000Z (over 10 years ago)
- Last Synced: 2024-10-19T17:29:59.977Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
```