As a user in a class that runs Jupyter notebooks for assignments, I have access to the assignments via the web interface. I assume the assignments are stored somewhere in my per
The easiest way is to archive all content using tar, but there is also an API for files downloading.
GET /files/_FILE_PATH_
To get all files in folder you can use:
GET /api/contents/work
Example:
curl https://server/api/contents?token=your_token
curl https://server/files/path/to/file.txt?token=your_token --output some.file
Source: Jupyter Docs