Search Engine DataBase utils
Project description
sedb
Search Engine DataBase utils
Install
pip install sedb --upgrade
Usage
Run example:
python example.py
See: example.py
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent / "src"))
import sedb
from sedb import MongoOperator, MongoConfigsType
if __name__ == "__main__":
mongo_configs = {
"host": "localhost",
"port": 27017,
"dbname": "test",
}
collection = "videos"
mongo = MongoOperator(configs=mongo_configs, indent=0)
cursor1 = mongo.get_cursor(
collection,
filter_index="pubdate",
filter_op="lte",
filter_range="2012-01-01",
sort_index="pubdate",
sort_order="asc",
)
print(cursor1.next())
cursor2 = mongo.get_cursor(
collection,
filter_index="pubdate",
filter_op="range",
filter_range=["2012-12-31", "2012-01-01"],
sort_index="pubdate",
sort_order="asc",
)
print(cursor2.next())
cursor3 = mongo.get_cursor(
collection,
filter_index="pubdate",
filter_op="range",
filter_range=["2012-01-01", None],
sort_index="pubdate",
sort_order="asc",
)
print(cursor3.next())
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
sedb-0.5.1.tar.gz
(8.7 kB
view details)
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
sedb-0.5.1-py3-none-any.whl
(11.5 kB
view details)
File details
Details for the file sedb-0.5.1.tar.gz.
File metadata
- Download URL: sedb-0.5.1.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9aa054c3066abd0b692b0fe285a8ed488ce495e398cafb7c875e162b0847335
|
|
| MD5 |
598a791fbc860a33b7d6a0e7a3a81d93
|
|
| BLAKE2b-256 |
32f2414e36e82800409cefc8930c6093509c96dfaa9d624cee3bced3a132fd72
|
File details
Details for the file sedb-0.5.1-py3-none-any.whl.
File metadata
- Download URL: sedb-0.5.1-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eae90d89bae5c50b93caffd0d880ae13746a02c5de8b97b67bceeb5b54213795
|
|
| MD5 |
1a26cdd6597f8e66c1c6443509ac9ac8
|
|
| BLAKE2b-256 |
6caa9fe7f175cf1e64d42147eb4b725b50f67bb9c7c8df7c4e0b5a0f721e332e
|