Skip to content

Synology NAS REST API Python client

Notifications You must be signed in to change notification settings

a4649/synology_nas_api_python_client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Synology NAS REST API Python client

How To

import synology

key = synology.login()

synology.download_file(key, 'path/to/file.pdf')

synology.create_folder(key, 'path/to/folder')

synology.upload(key,'/local/file/path.pdf','/remote/file/path.pdf')

synology.logout(key)