Skip to main content

Mostly Invisible Database. A database access layer that acts like python in-memory objects.

Project description

Mostly Invisible Database

A database access layer that acts like python in-memory objects.


Disclaimer: Only minimal attempts have been made at speed. And mainly intended for personal projects. Deeply nested data structures will likely be slow.


Example:

>>> import midb
>>> root = midb.get_root('db_file.db')
>>> root['test'] = 1
>>> root['test2] = {'test3': 3}
>>> exit()

later ...

>>> import midb
>>> root = midb.get_root('db_file.db')
>>> root['test']
1
>>> root['test2']['test3']
3
>>> root['test2']
"PDict({'test3': 3})"
>>> root['test2'].in_memory()
{'test3': 3}
>>> exit()

What's currently supported?

Currently, the types that are supported are:

  • str
  • None
  • bool
  • int
  • float
  • datetime.datetime
  • datetime.date
  • datetime.time
  • dict (silently converted to PDict, must not contain unsupported types)

###Up Next:

  • Support for tuples as values.

###Future:

  • Support for hashable tuples as dict keys.
  • Support for lists.
  • Support for custom objects.

###Bugs

Please report bugs at https://gitlab.com/gossrock/midb/-/issues

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

midb-0.1.0-py3-none-any.whl (17.8 kB view hashes)

Uploaded 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