Skip to main content

A simple BSON database written in Python

Project description

BysonDB

A serverless key-value and document based database using BSON.

What the heck is BSON?

BSON is short for Binary JavaScript Object Notation. It is the binary encoding of JSON, created by MongoDB, and is used in their database. Unlike JSON, it was actually made for the storage of data. It is faster, and allows for more datatypes, such as dates and bytes, that JSON does not allow. You can read more about it's purpose, and it's similarities and differences to JSON here.

Usage:

Installation:

pip install bysondb

Key -> Value database:

A database just like normal JSON, with each key coresponding to a value

import datetime
from bysondb import BysonDB

# Create a database with a path to a file. The suffix
# will be changed to .bson, even if there is no suffix
my_db = BysonDB('path/to/database/file.bson')

# Set values like a normal dictionary
my_db["name"] = "John"
my_db["age"] = 30

# Get values in the same way
print(f"My name is {my_db['name']}. I am {my_db['age']} years old.")

# Some objects like datetimes can be used as well
# Not all objects can be serialized
my_db["date"] = datetime.datetime.now()

print(f"Today's date is {my_db['date'].strftime('%x')}")

# Deleting a key. Can't be undone, so be careful.
my_db.remove("test")

Document based database

A database structure similar to MongoDB, with a single collection of objects

from bysondb import BysonDocumentDB

# Creating a database is the same with the BysonDB,
# but using BysonDocumentDB
my_db = BysonDocumentDB('path/to/database/file.bson')

# Insert a single object to the database
person = {
    "name": "John",
    "age": 30
}
my_db.insert_one(person)

# Insert multiuple objects into the database
people = [
    {"name": "Joe"},
    {"name": "Steve"},
    {"key": "value"}
]
my_db.insert_many(people)


# Get objects as dicts from the database using a query

# Get all objects
all_objects = my_db.find({})

# Get an object where the key 'debug' is True
debug_objects = my_db.find({"debug": True})

# Find a maximum of 5 objects where the key 'key' is 'value'
objects = my_db.find({"key": "value"}, limit=5)

# Removing values is like finding them, with a search query and a limit
my_db.remove({"remove": True})
my_db.remove({"random_number": 5}, limit=1})

This package uses bson, a package for the BSON codec that does not rely on MongoDB.

This package was formatted using Black.

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

bysondb-0.1.1.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bysondb-0.1.1-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file bysondb-0.1.1.tar.gz.

File metadata

  • Download URL: bysondb-0.1.1.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.6 Windows/10

File hashes

Hashes for bysondb-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d6338583c1bd1be3c0e4852bd6af928b845df487652bec2c7ef4a5af7e10b74b
MD5 3d33775ad64fc131cb598025e365ef48
BLAKE2b-256 da34f773595a96742430d23d89fd4adc57e74272aad4cf4924d773971be13c75

See more details on using hashes here.

File details

Details for the file bysondb-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: bysondb-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.6 Windows/10

File hashes

Hashes for bysondb-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6e01f13b7b96233da81e837339dc3f1cb86d2106609da2c87876ed3d88c2d3a8
MD5 1a3ed8295630fa7d812a0c442ab291ff
BLAKE2b-256 cb16a0ab35f96074f942bf5f8256ea23cab997dcb67a007462aa0c4f1a5e1b82

See more details on using hashes here.

Supported by

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