Metadata-Version: 1.1
Name: sqlite-dbm
Version: 2.1.0
Summary: Dict-style DBM based on sqlite3.
Home-page: https://github.com/imbolc/sqlite_dbm
Author: Imbolc
Author-email: imbolc@imbolc.name
License: ISC
Description: sqlite-dbm
        ==========
        Dict-style DBM based on sqlite3.
        
            >>> import sqlite_dbm
            >>> db = sqlite_dbm.open('./test.sqlite')
            >>> db['foo'] = ['bar', 'baz', {'a': 1}]
            >>> db['foo']
            ['bar', 'baz', {'a': 1}]
            >>> del db['foo']
            >>> len(db)
            0
            >>> db.close()
        
        Fast insert:
        
            >>> db = sqlite_dbm.open('./test.sqlite', auto_commit=False)
            >>> for i in range(1000):
            ...     db[str(i)] = 'foo'
            >>> db.commit()
            >>> len(db)
            1000
            >>> db.clear()
            >>> db.close()
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
