Normalized filesystem. This library offers a common interface to interact with multiple filesystems, local or remote.


Keywords
filesystem, boto, s3, file, directory, norfs
License
MIT
Install
pip install norfs==1.1.0

Documentation

norfs

Build Status Coverage Status PyPI Status PyPI Version PyPI Python PyPI License PyPI Format

Normalized filesystem. This library offers a common interface to interact with multiple filesystems, local or remote:

import norfs.helpers

local = norfs.helpers.local()
demo_file = local.file('demo.txt')
demo_file.write(b'Hello World')
print(demo_file.read())

Install with pip: pip install norfs.

Find more information in the documentation