This post is just how to use the help command from mssparkutils.
You can use help at various levels of Synapse.
Root
The following command will tell you what areas help can assist you in. This will respond with
- fs
- notebook
- credentials
- env
from notebookutils import mssparkutils mssparkutils.help()
FileSystem
If you leave the help command empty it will just return all options that are available for help. If you put a command in then it will explain that command in greater detail.
from notebookutils import mssparkutils mssparkutils.fs.help() mssparkutils.fs.help('cp')
You must be logged in to post a comment.