Python library for managing and persisting named Python Queues with a variety of backend choices
Project description
pydq
A python library for managing and persisting named Python Queues
Installation
pip install pydq
Some backends may require extra packages:
pip install pydq[aws]
Basic Usage
with dq_provider('name') as dq:
# Query the last 10 entries with qid='item_id'
dq(qid='item_id', start_time=datetime(1, 1, 1), end_time=datetime.utcnow(), limit=10)
item = dq.get()
# queue items should be dictionaries with 3 keys: qid, ts, and val
dq.put({'qid': 'item_id', 'ts': '2019-09-11T03:23:54Z', 'val': 'foo'})
note: specifying qid in the query is optional, if omitted all items between the start and end time are returned
Supported Backends:
Local Storage
- SQLite:
from pydq.local import SQLite as dq_provider
Cloud Storage
- DynamoDB
from pydq.cloud import DynamoDB as dq_provider
note: cloud storage is created lazily; the first call to one of these providers will create the resources in the cloud.
Additional API
Some queue methods accept a forget argument that will tell the queue object whether the operation should be persisted. This always defaults to False.
dq.get(forget=True) # the returned item will be deleted from persistence
dq.put(item, forget=True) # item will not be persisted
dq.get_all(forget=True) # Easy way to delete all items in a queue
dq.put_all(items, forget=False)
dq.get_to_dataframe() # install with pandas extra. Returned items are not deleted
dq.put_from_dataframe(df) # items will be persisted
dq.clear() # another way to delete all items in a queue
Configuration queues
dq is great for managing simple JSON configuration too. And we get change tracking for free!
from pydq.helpers import DqConfig
from pydq.local import SQLite
with DqConfig(name='ApplicationConfig', dq_provider=SQLite) as config:
app_id = config['app_id']
last_start = config['last_start']
config['app_status'] = '#1best'
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 Distributions
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 pydq-0.1.20-py3-none-any.whl.
File metadata
- Download URL: pydq-0.1.20-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f8ea5619fa2e58840cfcb0d47943954d368df0c06b6334f936d735fce582bc5
|
|
| MD5 |
d4bc5acc486b950981b5fcbcc3623153
|
|
| BLAKE2b-256 |
6c9dc891d235d35abe63bd2362f8faddcd0e3a4fe3ead4702334e8b220ab29b5
|