Skip to main content

A disk backed dictionary implementation.

Project description

IODict

iodict is a thread safe dictionary implementation which uses a pure python object store. The dictionary implementation follows the Dict API, but stores items using their birthtime allowing users to treat this datastore as a file system backed OrderedDict.

Items in the object store use file system attributes, when available to store key and birthtime information. File system attributes enhance the capability of the object store; however, they're not required. In the event xattrs are not available, file stat is used for file creation time along with base64 encoding for object keys.

Usage

import iodict
data = iodict.IODict(path='/tmp/iodict')  # Could be any path on the file system
data["key"] = "value"
data
{'key': "value"}

dir(data)
['__class__',
 '__delattr__',
 '__delitem__',
 '__dict__',
 '__dir__',
 '__doc__',
 '__enter__',
 '__eq__',
 '__exit__',
 '__format__',
 '__ge__',
 '__getattribute__',
 '__getitem__',
 '__gt__',
 '__hash__',
 '__init__',
 '__init_subclass__',
 '__iter__',
 '__le__',
 '__len__',
 '__lt__',
 '__module__',
 '__ne__',
 '__new__',
 '__reduce__',
 '__reduce_ex__',
 '__repr__',
 '__setattr__',
 '__setitem__',
 '__sizeof__',
 '__str__',
 '__subclasshook__',
 '__weakref__',
 '_db_path',
 '_encoder',
 '_lock',
 'clear',
 'copy',
 'fromkeys',
 'get',
 'items',
 'keys',
 'pop',
 'popitem',
 'setdefault',
 'update',
 'values']

When running in a multiprocessing / threading application, a lock is required to be passed into the iodict class.

import threading

import iodict
data = iodict.IODict(path='/tmp/iodict', lock=threading.Lock)

By default, if no lock is provided, a multiprocessing lock will be created.

The lock object allows the iodict to respect the locking paradigm of the executing application.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iodict-0.0.1a20211215022940.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

iodict-0.0.1a20211215022940-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file iodict-0.0.1a20211215022940.tar.gz.

File metadata

  • Download URL: iodict-0.0.1a20211215022940.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for iodict-0.0.1a20211215022940.tar.gz
Algorithm Hash digest
SHA256 d45d07660ccf0f0ee48f5c2a51f9b797d9d6f170ae4623cd7391c87b10374a7d
MD5 c068b189abd79ee27a9d097eb5c2dfe7
BLAKE2b-256 aa460b58df4db188b28df94a50ca3bb6aa8f1988145693ac68b2b8f7b6487b5e

See more details on using hashes here.

File details

Details for the file iodict-0.0.1a20211215022940-py3-none-any.whl.

File metadata

  • Download URL: iodict-0.0.1a20211215022940-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for iodict-0.0.1a20211215022940-py3-none-any.whl
Algorithm Hash digest
SHA256 17ec6a5246fa80b3bd695f83b8927f4a942ac8f8bbb11320116e3250c93b142e
MD5 88b5d563ead45b35500b6143bc8fdd38
BLAKE2b-256 e354fad0f39eda2ee6d0ff380a9ad9723c57411e5fb9904b1317b11cc71167e1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page