A lightweight local NoSQL database
Project description
FileXdb-Python
FileXdb is a lightweight local NoSQL database, optimized for best coding experience.
It's written in Core Python and has no external dependencies. The target is to reduce the complexity of installing external SQL Database & data handling.
FileXdb is:
- A local, File-based, lightweight, horizontally scaled NoSQL Database.
- Designed to be simple and interesting to use by providing simple and clean APIs.
- A
Collection&Documentoriented approach.- Works on all modern versions of Python and PyPy.
Supported Python Versions
Since newer versions of Python are often faster, have more features and are better supported, the latest version of Python 3 is recommended for FileXdb. You may use it on older versions as well.
Installation
Install FileXdb using pip :
Windows:
python -m pip install filexdb
Linux / MAC:
python3 -m pip install filexdb
Getting Start
from filexdb import FileXdb
db = FileXdb("db-name", "path/to/data/dir")
new_coll = db.collection("collection-name")
new_coll.insert({"name": "Sam", "skills": ["Python", "C++"]})
Insert Multiple Documents
data = [
{
"name": "Jack",
"dept": "CSE"
},
{
"name": "Rocky",
"address": {
"PO": "Bongaon",
"PS": "Kolkata"
},
"skills": [
"Game Dev"
]
},
{
"name": "Rahul"
}
]
new_coll.insert_all(data) # `data` should be a List of JSON Object
Find Documents
query = {"name": "Sam"}
# Returns all Documents.
new_coll.find()
# Returns all Documents matches the ``_query``.
new_coll.find(query=query)
# Returns doc[1] to doc[2] matches the ``_query``.
new_coll.find(query=query, limit=(1, 3))
# Returns doc[1] to doc[9] of all Documents.
new_coll.find(limit=(3, 50))
Update Documents
query = {
"name": "Rocky"
}
updated_data = {
"name": "Rocky Bhai",
"skills": [
"Game Dev",
"C++",
"Python"
]
}
new_coll.update(updated_data, query)
Delete Documents
query = {
"name": "Rocky Bhai",
"dept": "ECE"
}
new_coll.delete(query)
More Features
FileXdb is in Beta stage. Currently we have above features only. We will come back to you with other advanced features soon.
You may also contribute in this journey.
Contributing
Thank you for investing your time in contributing to our project! Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community. Any contribution you make will be reflected on github.com/FileXdb/FileXdb-Python✨.
Contributions to FileXdb are welcome! Here's how to get started:
- Open an issue or find for related issues to start a discussion around a feature idea or a bug.
- Fork the repository on GitHub.
- Create a new branch of the master branch and start making your changes.
- Make a meaning-full commit.
- Write a test, which shows that the bug is fixed or the feature works as expected.
- Send a pull request and wait until it gets merged and published.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file filexdb-1.0.2.tar.gz.
File metadata
- Download URL: filexdb-1.0.2.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de64e2db72acb4b7e50853e1da80db900df81fd5be17b7232b478238bcffd6ce
|
|
| MD5 |
132be5a8955aeef2ae78b47a3be5fd39
|
|
| BLAKE2b-256 |
84039a48c94974f242c5e19270b86d9a274aa50e45e1d6ea60d658e1ed6356d1
|
File details
Details for the file filexdb-1.0.2-py3-none-any.whl.
File metadata
- Download URL: filexdb-1.0.2-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7eed590084f4ddca0d7dbd35a60f835e63d9ee85e9cb243b2fb58fed1d9ccf17
|
|
| MD5 |
9f7093a10e64b7704dfb7724da9ae12f
|
|
| BLAKE2b-256 |
6cab72bd9130b0be95de648868a51bafe3957ba98f79b156cbced56566b1ad6c
|