Download file
Tags: #owncloud #cloud #storage #operations #snippet
Description: This notebook allows users to download files from their OwnCloud account.
!pip install pyocclient
import naas
import owncloud
oc = owncloud.Client("https://cloud.damken.com")
oc.login("YOURNAME", "YOURPASS")
oc.get_file("testdir/download_to_owncloud.ipynb", "download_to_owncloud.ipynb")
Last modified 1mo ago