SQLite based queryable python indexes for dicts and lists
Project description
LiteIndex
in-process, thread and process safe, easy to use, query-able object storage implenetation for Python
Some use cases, benchmarks and examples:
- cache for a python function
- store and query large number of records without using up memory
- ultra-fast, query-able file storage (faster than creating files on disk and way better for querying)
- exchange data between threads or processes easily
- store application data locally in easy to query and stable format
- Trigger threads/ processes with your custom functions on any specific updates or deletes (combined with gevent or ray, this allows for a extremely easy to use and deploy sqs + lambda like pipeline)
- easily import from csv, tsv, jsonl, any iterable and run queries
pip install --upgrade liteindex
DefinedIndex
- Documentation
schema
has to be specified when creating a new DefinedIndex- Any python object can be stored in DefinedIndex
- Query language is copy of mongodb queries. All queries are documented.
- Querying can be done on
string
,number
,boolean
,json
,datetime
fields. - Math can be done on
number
fields blob
values can be queried for equality (same file), size.other
values can only be set, deleted, updated. Cannot be queried upon.- Insertion order is preserved
from liteindex import DefinedIndex
user_details_schema = {
"name": "string",
"age": "number",
"password": "string",
"verified": "boolean",
"address_details": "json",
"profile_picture": "blob",
"tag_line": "string",
"tag_line_embedding": "other",
"birth_day": "datetime"
}
# db path defaults to memory
index = DefinedIndex(
name="user_details",
schema=schema,
db_path="./test_db.liteindex"
)
AnyIndex (In development)
- Like mongodb, any python dict can be inserted at run time
- Doesn't need pre-defined structure unlike DefinedIndex
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
liteindex-0.0.2.dev9.tar.gz
(14.3 kB
view hashes)
Built Distribution
Close
Hashes for liteindex-0.0.2.dev9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20fca45ace95d9fc616bb88882969786f661f32396de472070eb37041218abe2 |
|
MD5 | c08930c3e344e62e171640a2204afa88 |
|
BLAKE2b-256 | e12f2a80d1e13b3357464ea90a638dee83c5886e867a12c8cc7e618e40e0eaaf |