https://github.com/ionelmc/python-redis-throttled-queue
WIP
https://github.com/ionelmc/python-redis-throttled-queue
Last synced: 7 months ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/ionelmc/python-redis-throttled-queue
- Owner: ionelmc
- License: bsd-2-clause
- Created: 2022-03-30T19:21:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T10:40:53.000Z (about 1 year ago)
- Last Synced: 2025-03-18T09:05:32.784Z (7 months ago)
- Language: Python
- Size: 84 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
========
Overview
========.. start-badges
.. list-table::
:stub-columns: 1* - docs
- |docs|
* - tests
- |github-actions| |codecov|
* - package
- |version| |wheel| |supported-versions| |supported-implementations| |commits-since|
.. |docs| image:: https://readthedocs.org/projects/python-redis-throttled-queue/badge/?style=flat
:target: https://readthedocs.org/projects/python-redis-throttled-queue/
:alt: Documentation Status.. |github-actions| image:: https://github.com/ionelmc/python-redis-throttled-queue/actions/workflows/github-actions.yml/badge.svg
:alt: GitHub Actions Build Status
:target: https://github.com/ionelmc/python-redis-throttled-queue/actions.. |codecov| image:: https://codecov.io/gh/ionelmc/python-redis-throttled-queue/branch/main/graphs/badge.svg?branch=main
:alt: Coverage Status
:target: https://app.codecov.io/github/ionelmc/python-redis-throttled-queue.. |version| image:: https://img.shields.io/pypi/v/redis-throttled-queue.svg
:alt: PyPI Package latest release
:target: https://pypi.org/project/redis-throttled-queue.. |wheel| image:: https://img.shields.io/pypi/wheel/redis-throttled-queue.svg
:alt: PyPI Wheel
:target: https://pypi.org/project/redis-throttled-queue.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/redis-throttled-queue.svg
:alt: Supported versions
:target: https://pypi.org/project/redis-throttled-queue.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/redis-throttled-queue.svg
:alt: Supported implementations
:target: https://pypi.org/project/redis-throttled-queue.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-redis-throttled-queue/v1.0.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-redis-throttled-queue/compare/v1.0.0...main.. end-badges
Queue system with key-based throttling implemented over Redis.
* Free software: BSD 2-Clause License
Installation
============::
pip install redis-throttled-queue
You can also install the in-development version with::
pip install https://github.com/ionelmc/python-redis-throttled-queue/archive/main.zip
Documentation
=============https://python-redis-throttled-queue.readthedocs.io/
Development
===========To run all the tests run::
tox
Note, to combine the coverage data from all the tox environments run:
.. list-table::
:widths: 10 90
:stub-columns: 1- - Windows
- ::set PYTEST_ADDOPTS=--cov-append
tox- - Other
- ::PYTEST_ADDOPTS=--cov-append tox