Metadata-Version: 2.1
Name: filesystem-dict
Version: 0.1.3
Summary: Dictionary like access to the filesystem.
Home-page: https://github.com/MNayer/fsdict
Author: MNayer
Author-email: marie.nayer@web.de
License: 0BSD
Keywords: dictionary,filesystem
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# FSDict

## Design principles
1) Every key of a fsdict must be of type 'str'.
2) A fsdict may not be part of a list.
3) A fsdict may contain other fsdicts.
4) Dictionaries in python are passed by reference; so are fsdicts. By default
an fsdict is always passed by refernece. That is, its values are not copied but
the fsdict is symlinked to the new position.

## Internals
Possible value types and how they are handled:
- fsdict - a directory
- 'bytes' type - written to file as is
- any other python object (except for 'bytes') - pickled
