Metadata-Version: 1.1
Name: zipdbm
Version: 1.0.0
Summary: Dict-style DBM based on zipfile.
Unfortunately, you can't delete or overwrite files in zip archives.
Home-page: https://github.com/imbolc/zipdbm
Author: Imbolc
Author-email: imbolc@imbolc.name
License: ISC
Description: zipdbm
        ======
        Dict-style DBM based on zipfile.
        Unfortunately, you can't delete or overwrite files in zip archives.
        
            >>> import zipdbm
            >>> db = zipdbm.open('./test.zip')
            >>> db['foo'] = 'bar'
            >>> db['foo']
            'bar'
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
