Skip to main content

A trivial, persistent, dictionary-like object, backed by SQLite.

Project description

Build Status

A trivial, persistent, dictionary-like object, backed by SQLite.

Installation

$ python setup.py install

Or just drop the permadict.py file into your package.

Usage

Basic usage:

>>> from permadict import Permadict
>>> d = Permadict("db.sqlite")
>>> d["key"] = "value"
>>> print(d["key"])
value

As a context manager:

>>> with Permadict("db.sqlite") as d:
...     d["something"] = 1.2345
...
>>> with Permadict("db.sqlite") as d:
...     print(d["something"])
...
1.2345

Iterating:

>>> d = Permadict("db.sqlite")
>>> for k, v in d.items():
...     print(k, v)
...
something 1.2345
>>> for key in d.keys():
...     print(key)
...
something

Deleting an item:

>>> del d["something"]

Clearing all items:

>>> d.clear()

Limitations

Keys must be strings. Values are stored as BLOB type after being pickled, so your Python objects must be picklable.

Permadict doesn’t act entirely like a dict: some methods are missing, whether that be on purpose (as with dict.copy) or simply due to negligence.

Motivation

I needed a way to share small amounts of data between processes. SQLite provides a safe way to do so. Also, why not?

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

permadict-1.0.1-py2.py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 2 Python 3

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