Versions Compared

Key

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

...

To make working with files in Atlassian simple, we have introduced AtlasFS. AtlasFS works just like the Python Standard Library. The above file operation, in AtlasFS, is written as:

...

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

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.

We hope this approach is more intuitive than trying to remember custom APIs.

...