heroku_git_fs

Persistent storage through a git repository for ephemeral filesystems.

Installation can be done with:

pip install heroku_git_fs

After that the object can be imported by importing it:

from heroku_git_fs import HerokuGitFS

And then be used either through with statements or simply instantaniated. (with is recommended as this ensures proper cleanup):

heroku_git_fs = HerokuGitFS("http://example.io/something.git",
"storage", "master", False)
heroku_git_fs.update()
heroku_git_fs.close()

# or
with HerokuGitFS("http://example.io/something.git", "storage",
     "master", False) as heroku_git_fs:
         heroku_git_fs.update()

See the Tutorial for details.

Indices and tables