Asset demo
Tags: #naas #asset #snippet #operations
Read the doc on https://naas.gitbook.io/naas/features/asset
Build notebooks that can communicate with third parties applications and run remotely.
import naas
# Add the path of the document you want to share (don't forget to put the extension)
PATH = "PATH_OF_YOUR_DOCUMENT.png"
url = naas.asset.add(PATH)
# To delete your asset, uncomment the line below and execute this cell
# naas.asset.delete(PATH)
url
Last modified 3mo ago