Metadata-Version: 1.0
Name: fsdbm
Version: 0.2
Summary: Dict-style file system based DBM, suitable for large data (such as images).
Home-page: http://bitbucket.org/imbolc/fsdbm/
Author: Imbolc
Author-email: imbolc@imbolc.name
License: BSD
Description: odbm
        ====
        
        Installation
        ------------
        
            $  pip install fsdbm
        
        Usage
        -----
            
                >>> db = FSDBM('var/test.fdb')
                >>> db.clear()
                >>> db['a'] = {'a': range(10)}
                >>> db['a'] == {'a': range(10)}
                True
                >>> db['b'] = 1
                >>> len(db)
                2
                >>> del db['a']
                >>> db.keys()
                ['b']
Keywords: dbm
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
