Skip to main content

ExiDB it is an easier way to make a simple database with simple Query

Project description

# ExiDB NOSQL Database

## Installation

  • pip : pip install ExiDB

## Getting Started

`py import exidb db = ExiDB('path/file.json',None) `

# Insert key,value to the database

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.insert("Exi",{"_id":0}) `

# Add key,value to the database

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.add("Exi.Items",["Pen"]) `

# Edit key,value to the database

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.edit("Exi.Items","Paper") `

# Append key,value to the database

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.append("Exi.Items",["Pen"]) `

# get value from key to the database

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) print(db.get("Exi.Items")) `

# get all the file

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.all() `

# delete value from key to the database

`py from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.delete("Exi.Items") ` # purge the file to the database

`python from exidb import ExiDB,QueryDB db = ExiDB('path/file.json',None) db.purge() `

# QueryDB

`py from exidb import QueryDB Query = QueryDB('path/file.json') Query.Serch("Username") #return all the value that it key is Username Query.JSONPathRaw("$..Username") #return raw JSONPath `

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

ExiDB-1.5.tar.gz (3.4 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