A standalone package providing decorators compatible with uWSGI, allowing easy integration of uWSGI features like cron, timer, signal, lock, and spooler without the full uwsgi module. Current version 1.1.0 appears to be stable with infrequent releases.
pip install uwsgidecoratorsVerified import paths — ran on the pinned version, not inferred.
A simple timer decorator that runs in a mule every 10 seconds.
Uninstall uwsgi if you only need decorators: pip uninstall uwsgi && pip install uwsgidecorators
Check uwsgi availability in code: if hasattr(uwsgidecorators, 'uwsgi'): # safe to use decorators
Prefer Python's threading.Lock or multiprocessing.Lock if not within uWSGI's async environment.
No dependency data recorded yet.