Skip to content

KeyStorke/PySwapDict

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

About

Python swap-dictionary. Standard python class, with dict-like interface. Support:

  • iteration, updating, creation from standard dictionary
  • swapping data to disk space
  • safe multiprocess/multithread work
  • support build with Pyinstaller
  • Python 2.7 or higher (including 3.5)
  • creation SwapDict from standard dictionary

Example:

from SwapDict import SwapDict

d = SwapDict()

for i in range(0, 20):
    d[i] = str(i)

TODO

  • Create ContextManager without shelve (and him bugs!)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages