Registry / workflow / minique

minique

JSON →
library0.11.0pypypiunverified

Minimal Redis job runner for Python. Version 0.11.0, released sporadically. Requires Python >=3.9, depends on Redis.

pip install minique[redis]
INSTALL
IMPORT
SIG · MINIQUE
M
minique
workflowpythonv0.11.0
Install
1.9s avg
Import
Disk
21MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.11.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 22.8MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 1.9s · import 0.000s · 23MB
21MB installed
● package 21MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Queue
from minique import Queue
from minique import Queue

Creates a Redis-backed job queue, enqueues a function call, and processes jobs in burst mode.

import os import redis from minique import Queue, enqueue, worker redis_client = redis.Redis.from_url(os.environ.get('REDIS_URL', 'redis://localhost:6379/0')) queue = Queue('default', connection=redis_client) # Enqueue a job job = enqueue(queue, 'my_function', args=(1, 2), kwargs={}) print(f'Enqueued job {job.id}') # Work off jobs worker(queue, burst=True)
Debug
Known issues
breakingIn 0.10.0, the `enqueue` function was moved from `minique.enqueue` to `minique` top-level. Old import `from minique.enqueue import enqueue` breaks.
fix
Use `from minique import enqueue`.
affects: >=0.10.0
gotchaThe job function must be importable by the worker. If using a dotted path string, ensure the module is in the same Python path.
fix
Use absolute import paths, e.g., 'mymodule.myfunc'.
affects: >=0.1.0
deprecatedThe `minique.Worker` class is deprecated in 0.11.0; use the `worker()` convenience function instead.
fix
Replace `Worker(queue).run()` with `worker(queue)`.
affects: 0.11.0
Upgrade
Version history
0.11.0latest on PyPI · released Sep 5, 2025
Audit
Dependencies
redisrequiredRequired runtime dependency for job queue backend
Agent activity
21 hits · last 30 days
node
20
OpenAI (training)
1
Resources
minique — pip install minique · libregistry