Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
with fs.open('output.txt', 'w') as f:
  f.write('Hello, World!')
Note

Don’t forget to include the fs. prefix, otherwise the file will be saved locally on the notebook server, and will be lost when the server is shutdown.

The files that will be available to the notebook are the datasets in the same project. In this first version, it is a flat folder structure. Support for sub-folders and other file storage layers such as S3 and GCP are on the roadmap.

...