Skip to main content

A simple json database

Project description

LOL

Lol is a database library(An improved version of json-based-database)


Features

  • A set of data types
    • Numbers
    • Strings
    • Maps
    • Arrays
    • Interfaces
  • A json-based-database
    • Add
    • Delete
    • Update
    • Filter

How to use it

Database

See the database documentation here


Datatypes

See all the datatype methods here

Arrays

from loldb.datatypes.arrays import Array

array = Array(int, length=None)

Maps

from loldb.datatypes.maps import Maps

maps = Maps((int, str))

Interfaces

from loldb.datatypes.interface import Interface

data = Interface({
    name : [str, int],
    age : "?" # any,
})

# create an interface object
obj = data.create("Pranav", 13)

# gives you the name
print(obj.get('name'))

Numbers

from loldb.datatypes.number import Number

num = Number("777")

Strings

from loldb.datatypes.string import String

string = String(7777)

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

loldb-0.0.1.tar.gz (10.8 kB view hashes)

Uploaded Source

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