Metadata-Version: 1.1
Name: disk_dict
Version: 2.0.1
Summary: A disk-based key/value store in Python.
Home-page: https://github.com/AWNystrom/DiskDict
Author: Andrew Nystrom
Author-email: AWNystrom@gmail.com
License: Apache 2.0
Description: A disk-based key/value store in Python. All operations are as fast as the host operating system's file access complexities. Methods have been overloaded for pretty syntax.
        
        >>> dd = DiskDict('my_disk_dict', default=0)
        >>> dd['hello']
        0
        >>> dd['hello'] += 7
        >> dd['hello']
        7
        >>> del dd['hello']
        >>> dd['hello']
        0
        
        PyPI: https://pypi.python.org/pypi?name=disk_dict&version=1.0.0&:action=display
        
        Github: https://github.com/AWNystrom/DiskDict/
        
Keywords: disk,based,key,value,store,dict,diskdict
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
