Skip to main content

Pexicdb is a simple model based file database

Project description

Pexicdb Downloads

pexicdb is a simple model based file database, pexicdb is a lightweight and stores data in the folders and files, basically a folder is called container.

There are 2 types of files inside container

  1. container file(models stored in this)
  2. data file(contains all data about the container)

pexicdb interact with the containers using model which is usually a list of fields.

Install

$ pip install pexicdb

Simple program

from pexicdb.fields import StringField, UUIDField
from pexicdb import connect

user_model = {
    "id": UUIDField("id"),
    "name": StringField("name")
}

users = connect("users", list(user_model.values()))

users.insert({
    "name" : "Harkishan Khuva"
})

NOTE : The first field of any Model must be either UUIDField or an IntegerField.

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

pexicdb-0.0.1.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

pexicdb-0.0.1-py3-none-any.whl (12.4 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