Metadata-Version: 1.1
Name: tardbm
Version: 1.0.0
Summary: Dict-style DBM based on tarball.
Home-page: https://github.com/imbolc/tardbm
Author: Imbolc
Author-email: imbolc@imbolc.name
License: ISC
Description: tardbm
        ======
        Dict-style DBM based on tarball.
        
            >>> import tardbm
            >>> db = tardbm.open('./test.tar.gz')
            >>> db['foo'] = 'bar'
            >>> db['foo']
            'bar'
            >>> del db['foo']
            >>> len(db)
            0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
