Log a project to an external file systemΒΆ
To create a project in an external file system, you will need the path to the filesystem including the protocol, as well as any storage options your filesystem takes. See the fsspec docs for example usage and available protocols.
from lazyscribe import Project
fpath = "s3://path/to/my/project.json"
storage_options = {
"username": "user",
"password": "pswrd"
}
project = Project(fpath=fpath, **storage_options)
From there, you can use your project as normal.
Note that to use some external filesystems, you will need to install additional packages.
See the installation instructions here
in the fsspec
docs for more information.