NQLStore, a simple CRUD store python library for `any query launguage` (or in short `nql`).
Project description
NQLStore
NQLStore, a simple CRUD store python library for any query launguage (or in short nql)
NQLStore provides an oversimplified API for the mundane things of creating, reading,
updating, and deleting data models that are persisted to any SQL- or NoSQL- database.
In total, all we need are four methods and that is it.
Supported databases include:
-
Relational databases like:
- SQLite
- PostgreSQL
- MySQL
-
NoSQL databases like:
- Redis
- MongoDB
If you like our simple API, you can even easily extend it to support your favourite database technology.
Dependencies
- Python +3.10
- Pydantic +2.0
- SQLModel _(optional) - only required for relational databases
- RedisOM (optional) - only required for redis
- Beanie (optional) - only required for MongoDB
Examples
See the examples folder for some example applications.
Hopefully more examples will be added with time. Currently, we have the following:
Quick Start
Install NQLStore from Pypi
Install NQLStore from pypi, with any of the options: sql, mongo, redis, all.
pip install "nqlstore[all]"
Create Schemas
Create the basic structure of the data that will be saved in the store.
These schemas will later be used to create models that are specific to the underlying database
technology.
# schemas.py
from nqlstore import Field, Relationship
from pydantic import BaseModel
class Library(BaseModel):
address: str = Field(index=True, full_text_search=True)
name: str = Field(index=True, full_text_search=True)
books: list["Book"] = Relationship(back_populates="library")
class Settings:
# this Settings class is optional. It is only used by Mongo models
# See https://beanie-odm.dev/tutorial/defining-a-document/
name = "libraries"
class Book(BaseModel):
title: str = Field(index=True)
library_id: int | None = Field(default=None, foreign_key="sqllibrary.id", disable_on_redis=True, disable_on_mongo=True)
library: Library | None = Relationship(back_populates="books", disable_on_redis=True, disable_on_mongo=True)
Initialize your store and its models
Initialize the store and its models that is to host your models.
SQL
Migrations are outside the scope of this package
# main.py
from nqlstore import SQLStore, SQLModel
from .schemas import Book, Library
# Define models specific to SQL.
SqlLibrary = SQLModel(
"SqlLibrary", Library, relationships={"books": list["SqlBook"]}
)
SqlBook = SQLModel("SqlBook", Book, relationships={"library": SqlLibrary | None})
async def main():
sql_store = SQLStore(uri="sqlite+aiosqlite:///database.db")
await sql_store.register([
SqlLibrary,
SqlBook,
])
Redis
Take note that JsonModel, EmbeddedJsonModel require RedisJSON, while queries require RedisSearch to be loaded You need to install redis-stack or load the modules manually
# main.py
from nqlstore import RedisStore, EmbeddedJsonModel, JsonModel
from .schemas import Book, Library
# Define models specific to redis.
RedisBook = EmbeddedJsonModel("RedisBook", Book)
RedisLibrary = JsonModel("RedisLibrary", Library, embedded_models={"books": list[RedisBook]})
async def main():
redis_store = RedisStore(uri="rediss://username:password@localhost:6379/0")
await redis_store.register([
RedisLibrary,
RedisBook,
])
Mongo
# main.py
from nqlstore import MongoStore, MongoModel, EmbeddedMongoModel
from .schemas import Library, Book
# Define models specific to MongoDB.
MongoBook = EmbeddedMongoModel("MongoBook", Book)
MongoLibrary = MongoModel("MongoLibrary", Library, embedded_models={"books": list[MongoBook]})
async def main():
mongo_store = MongoStore(uri="mongodb://localhost:27017", database="testing")
await mongo_store.register([
MongoLibrary,
MongoBook,
])
Use your models in your application
In the rest of your application use the four CRUD methods on the store to do CRUD operations.
Filtering follows the MongoDb-style
Note: For more complex queries, one can also pass in querying styles native to the type of the database,
alongside the MongoBD-style querying. The two queries would be merged asANDqueries.Or one can simply ignore the MongoDB-style querying and stick to the native querying.
The available querying formats include:
- SQL - SQLModel-style
- Redis - RedisOM-style
- MongoDb - MongoDB-style
Insert
Inserting new items in a store, call store.insert() method.
new_libraries = await sql_store.insert(SqlLibrary, [{}, {}])
new_libraries = await mongo_store.insert(MongoLibrary, [{}, {}])
new_libraries = await redis_store.insert(RedisLibrary, [{}, {}])
Find
Finding items in a store, call the store.find() method.
The key-word arguments include:
skip (int)- number of records to ignore at the top of the returned results; default is 0.limit (int | None)- maximum number of records to return; default is None.
The querying format is as described above
# MongoDB-style: works with any underlying database technology
libraries = await sql_store.find(
SqlLibrary, query={"name": {"$eq": "Hairora"}, "address" : {"$ne": "Buhimba"}}
)
# Native SQL-style: works only if underlying database is SQL database
libraries = await sql_store.find(
SqlLibrary, SqlLibrary.name == "Hairora", SqlLibrary.address != "Buhimba"
)
# Hybrid SQL-Mongo-style: works only if underlying database is SQL database
libraries = await sql_store.find(
SqlLibrary, SqlLibrary.name == "Hairora", query={"address" : {"$ne": "Buhimba"}}
)
# Native Redis-style: works only if underlying database is redis database
libraries = await redis_store.find(
RedisLibrary, (RedisLibrary.name == "Hairora") & (RedisLibrary.address != "Buhimba")
)
# Hybrid redis-mongo-style: works only if underlying database is redis database
libraries = await redis_store.find(
RedisLibrary, (RedisLibrary.name == "Hairora"), query={"address" : {"$ne": "Buhimba"}}
)
Update
Updating items in a store, call the store.update() method.
The method returns the newly updated records.
The filters follow the same style as that used when querying as shown above.
The updates objects are simply dictionaries of the new field values.
# Mongo-style of filtering: works with any underlying database technology
libraries = await redis_store.update(
RedisLibrary,
query={"name": {"$eq": "Hairora"}, "address" : {"$ne": "Buhimba"}},
updates={"name": "Foo"},
)
# Native SQL-style filtering: works only if the underlying database is SQL
libraries = await sql_store.update(
SqlLibrary,
SqlLibrary.name == "Hairora", SqlLibrary.address != "Buhimba",
updates={"name": "Foo"},
)
# Hybrid SQL-mongo-style filtering: works only if the underlying database is SQL
libraries = await sql_store.update(
SqlLibrary,
SqlLibrary.name == "Hairora", query={"address" : {"$ne": "Buhimba"}},
updates={"name": "Foo"},
)
# Native redisOM-style filtering: works only if the underlying database is redis
libraries = await redis_store.update(
RedisLibrary,
(RedisLibrary.name == "Hairora") & (RedisLibrary.address != "Buhimba"),
updates={"name": "Foo"},
)
# Hybrid redis-mongo-style filtering: works only if the underlying database is redis
libraries = await redis_store.update(
RedisLibrary,
(RedisLibrary.name == "Hairora"),
query={"address" : {"$ne": "Buhimba"}},
updates={"name": "Foo"},
)
# MongoDB is special. It can also accept `updates` of the MongoDB-style update dicts
# See <https://www.mongodb.com/docs/manual/reference/operator/update/>.
# However, this has the disadvantage of making it difficult to swap out MongoDb
# with another underlying technology.
#
# It is thus recommended to stick to using `updates` that are simply
# dictionaries of the new field values.
#
# The MongoDB-style update dicts work only if the underlying database is mongodb
libraries = await mongo_store.update(
MongoLibrary,
{"name": "Hairora", "address": {"$ne": "Buhimba"}},
updates={"$set": {"name": "Foo"}}, # "$inc", "$addToSet" etc. can be accepted, but use with care
)
Delete
Deleting items in a store, call the store.delete() method.
The filters follow the same style as that used when reading as shown above.
# Mongo-style of filtering: works with any underlying database technology
libraries = await mongo_store.delete(
MongoLibrary, query={"name": {"$eq": "Hairora"}, "address" : {"$ne": "Buhimba"}}
)
# Native SQL-style filtering: works only if the underlying database is SQL
libraries = await sql_store.delete(
SqlLibrary, SqlLibrary.name == "Hairora", SqlLibrary.address != "Buhimba"
)
# Hybrid SQL-mongo-style filtering: works only if the underlying database is SQL
libraries = await sql_store.delete(
SqlLibrary, SqlLibrary.name == "Hairora", query={"address" : {"$ne": "Buhimba"}}
)
# Native redisOM-style filtering: works only if the underlying database is redis
libraries = await redis_store.delete(
RedisLibrary, (RedisLibrary.name == "Hairora") & (RedisLibrary.address != "Buhimba")
)
# Hybrid redis-mongo-style filtering: works only if the underlying database is redis
libraries = await redis_store.delete(
RedisLibrary, (RedisLibrary.name == "Hairora"), query={"address" : {"$ne": "Buhimba"}}
)
TODO
- Add documentation site
Contributions
Contributions are welcome. The docs have to maintained, the code has to be made cleaner, more idiomatic and faster, and there might be need for someone else to take over this repo in case I move on to other things. It happens!
When you are ready, look at the CONTRIBUTIONS GUIDELINES
License
Copyright (c) 2025 Martin Ahindura
Licensed under the MIT License
Gratitude
Thanks goes to the people in the CREDITS.md, for the efforts they have put into this project.
But above all, glory be to God.
"In that day you will ask in My name. I am not saying that I will ask the Father on your behalf. No, the Father himself loves you because you have loved Me and have believed that I came from God."
-- John 16: 26-27
Project details
Release history Release notifications | RSS feed
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 nqlstore-0.1.5.tar.gz.
File metadata
- Download URL: nqlstore-0.1.5.tar.gz
- Upload date:
- Size: 46.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e50d23e0f57d3ff207c2a8e02cd899f4c16390607361f432c2e259e87ce7fbdd
|
|
| MD5 |
67ae8140642a580fe22b672315964a88
|
|
| BLAKE2b-256 |
14d97f5d141b8578e87ea80a89de4f255fa1810cb1fada7443b8b9fefa1aa548
|
File details
Details for the file nqlstore-0.1.5-py3-none-any.whl.
File metadata
- Download URL: nqlstore-0.1.5-py3-none-any.whl
- Upload date:
- Size: 27.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36ea44a5378ce6895c3e42de5872e1fa5a4892e746f2ba10ac6c92c6bdc875dc
|
|
| MD5 |
14bcb21b5671731edd6adbc1eaae86f0
|
|
| BLAKE2b-256 |
972b1c0584fc6a20210a9eadbe2aeeeab52b5c37bb11d16512a8b1fa8248e728
|