Metadata-Version: 1.0
Name: pdicts
Version: 0.1
Summary: a persistent dictionary implementation
Home-page: https://github.com/pdamoc/pdicts
Author: Peter Damoc
Author-email: pdamoc@gmail.com
License: MIT
Description: 
        pdict is an implementation of a persistent dictionary using sqlite3 and json libraries. The library is silly and it sucks and as such it shouldn't be used by anyone. :)
        
        Usage:
        ::
            >>> import pdicts
            
            >>> d = pdicts.PersistentDict("test.sqlite")
            
            >>> d['moto'] = "Let the beauty of what you love be what you do"
            
            >>> d['moto']  
            u'Let the beauty of what you love be what you do'
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
