New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ExiDB

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ExiDB

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

  • 1.5
  • PyPI
  • Socket score

Maintainers
1

ExiDB NOSQL Database

Installation

  • pip : pip install ExiDB

Getting Started

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

Insert key,value to the database

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

Add key,value to the database

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

Edit key,value to the database

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

Append key,value to the database

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

get value from key to the database

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

get all the file

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

delete value from key to the database

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

purge the file to the database

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

QueryDB

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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc