rate-control


Namerate-control JSON
Version 3.0.1 PyPI version JSON
download
home_pagehttps://github.com/corentin-regent/rate-control
SummaryVersatile rate controlling in Python
upload_time2024-04-27 08:01:04
maintainerNone
docs_urlNone
authorCorentin Régent
requires_python<4.0,>=3.8
licenseMIT
keywords async rate limit schedule throttle token bucket
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ============
Rate Control
============

*Versatile rate controlling in Python*

======= =========================================================
CI/CD   |release| |ci| |docs|
Package |python-version| |package-version| |license|
Quality |coverage| |quality-gate| |maintainability| |reliability|
Meta    |type-check| |code-style|
======= =========================================================

Documentation
=============

Full documention can be found at https://rate-control.readthedocs.io/

Key Features
============

* `Rate limiting <https://rate-control.readthedocs.io/en/latest/quickstart.html#basic-usage>`_
* `Scheduling requests <https://rate-control.readthedocs.io/en/latest/scheduling.html>`_
* `Request synchronization <https://rate-control.readthedocs.io/en/latest/synchronization.html>`_
* `Request prioritization <https://rate-control.readthedocs.io/en/latest/scheduling.html#request-prioritization>`_
* `Chaining buckets <https://rate-control.readthedocs.io/en/latest/bucket-groups.html>`_
* Support for both asyncio_ and Trio_, through AnyIO_

.. _AnyIO: https://github.com/agronholm/anyio
.. _asyncio: https://docs.python.org/3/library/asyncio.html
.. _Trio: https://github.com/python-trio/trio

Contributing
============

Contributions are very welcome. Please read `CONTRIBUTING </CONTRIBUTING.rst>`_ for details.


.. CI/CD:

.. |release| image:: https://github.com/corentin-regent/rate-control/actions/workflows/release.yml/badge.svg
  :alt: Release
  :target: https://github.com/corentin-regent/rate-control/actions/workflows/release.yml

.. |ci| image:: https://github.com/corentin-regent/rate-control/actions/workflows/ci.yml/badge.svg
  :alt: Continuous Integration
  :target: https://github.com/corentin-regent/rate-control/actions/workflows/ci.yml

.. |docs| image:: https://readthedocs.org/projects/rate-control/badge/?version=latest
  :alt: Documentation Status
  :target: https://rate-control.readthedocs.io/

.. Package:

.. |python-version| image:: https://img.shields.io/pypi/pyversions/rate-control?logo=python
  :alt: Python Versions

.. |package-version| image:: https://img.shields.io/pypi/v/rate-control?logo=python
  :alt: Package Version
  :target: https://pypi.org/project/rate-control/

.. |license| image:: https://img.shields.io/pypi/l/rate-control?logo=unlicense
  :alt: MIT License
  :target: https://rate-control.readthedocs.io/en/latest/license.html

.. Quality:

.. |coverage| image:: https://img.shields.io/sonar/coverage/corentin-regent_rate-control?server=https%3A%2F%2Fsonarcloud.io&logo=sonarcloud
  :alt: Code Coverage
  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control

.. |quality-gate| image:: https://sonarcloud.io/api/project_badges/measure?project=corentin-regent_rate-control&metric=alert_status
  :alt: Quality Gate
  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control

.. |maintainability| image:: https://sonarcloud.io/api/project_badges/measure?project=corentin-regent_rate-control&metric=sqale_rating
  :alt: Maintainability Rating
  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control

.. |reliability| image:: https://sonarcloud.io/api/project_badges/measure?project=corentin-regent_rate-control&metric=reliability_rating
  :alt: Reliability Rating
  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control

.. Meta:

.. |type-check| image:: https://www.mypy-lang.org/static/mypy_badge.svg
  :alt: Type Checked
  :target: https://mypy-lang.org/

.. |code-style| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
  :alt: Code Style
  :target: https://github.com/astral-sh/ruff

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/corentin-regent/rate-control",
    "name": "rate-control",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "async, rate limit, schedule, throttle, token bucket",
    "author": "Corentin R\u00e9gent",
    "author_email": "corentin.regent.pro@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ea/ca/33efbcf1f08b3986e55e9e35981a4c00a4cb755e2b0bcf6e7ef7a38ac16e/rate_control-3.0.1.tar.gz",
    "platform": null,
    "description": "============\nRate Control\n============\n\n*Versatile rate controlling in Python*\n\n======= =========================================================\nCI/CD   |release| |ci| |docs|\nPackage |python-version| |package-version| |license|\nQuality |coverage| |quality-gate| |maintainability| |reliability|\nMeta    |type-check| |code-style|\n======= =========================================================\n\nDocumentation\n=============\n\nFull documention can be found at https://rate-control.readthedocs.io/\n\nKey Features\n============\n\n* `Rate limiting <https://rate-control.readthedocs.io/en/latest/quickstart.html#basic-usage>`_\n* `Scheduling requests <https://rate-control.readthedocs.io/en/latest/scheduling.html>`_\n* `Request synchronization <https://rate-control.readthedocs.io/en/latest/synchronization.html>`_\n* `Request prioritization <https://rate-control.readthedocs.io/en/latest/scheduling.html#request-prioritization>`_\n* `Chaining buckets <https://rate-control.readthedocs.io/en/latest/bucket-groups.html>`_\n* Support for both asyncio_ and Trio_, through AnyIO_\n\n.. _AnyIO: https://github.com/agronholm/anyio\n.. _asyncio: https://docs.python.org/3/library/asyncio.html\n.. _Trio: https://github.com/python-trio/trio\n\nContributing\n============\n\nContributions are very welcome. Please read `CONTRIBUTING </CONTRIBUTING.rst>`_ for details.\n\n\n.. CI/CD:\n\n.. |release| image:: https://github.com/corentin-regent/rate-control/actions/workflows/release.yml/badge.svg\n  :alt: Release\n  :target: https://github.com/corentin-regent/rate-control/actions/workflows/release.yml\n\n.. |ci| image:: https://github.com/corentin-regent/rate-control/actions/workflows/ci.yml/badge.svg\n  :alt: Continuous Integration\n  :target: https://github.com/corentin-regent/rate-control/actions/workflows/ci.yml\n\n.. |docs| image:: https://readthedocs.org/projects/rate-control/badge/?version=latest\n  :alt: Documentation Status\n  :target: https://rate-control.readthedocs.io/\n\n.. Package:\n\n.. |python-version| image:: https://img.shields.io/pypi/pyversions/rate-control?logo=python\n  :alt: Python Versions\n\n.. |package-version| image:: https://img.shields.io/pypi/v/rate-control?logo=python\n  :alt: Package Version\n  :target: https://pypi.org/project/rate-control/\n\n.. |license| image:: https://img.shields.io/pypi/l/rate-control?logo=unlicense\n  :alt: MIT License\n  :target: https://rate-control.readthedocs.io/en/latest/license.html\n\n.. Quality:\n\n.. |coverage| image:: https://img.shields.io/sonar/coverage/corentin-regent_rate-control?server=https%3A%2F%2Fsonarcloud.io&logo=sonarcloud\n  :alt: Code Coverage\n  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control\n\n.. |quality-gate| image:: https://sonarcloud.io/api/project_badges/measure?project=corentin-regent_rate-control&metric=alert_status\n  :alt: Quality Gate\n  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control\n\n.. |maintainability| image:: https://sonarcloud.io/api/project_badges/measure?project=corentin-regent_rate-control&metric=sqale_rating\n  :alt: Maintainability Rating\n  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control\n\n.. |reliability| image:: https://sonarcloud.io/api/project_badges/measure?project=corentin-regent_rate-control&metric=reliability_rating\n  :alt: Reliability Rating\n  :target: https://sonarcloud.io/summary/new_code?id=corentin-regent_rate-control\n\n.. Meta:\n\n.. |type-check| image:: https://www.mypy-lang.org/static/mypy_badge.svg\n  :alt: Type Checked\n  :target: https://mypy-lang.org/\n\n.. |code-style| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json\n  :alt: Code Style\n  :target: https://github.com/astral-sh/ruff\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Versatile rate controlling in Python",
    "version": "3.0.1",
    "project_urls": {
        "Changelog": "https://rate-control.readthedocs.io/en/latest/changelog.html",
        "Documentation": "https://rate-control.readthedocs.io/",
        "Homepage": "https://github.com/corentin-regent/rate-control",
        "Repository": "https://github.com/corentin-regent/rate-control"
    },
    "split_keywords": [
        "async",
        " rate limit",
        " schedule",
        " throttle",
        " token bucket"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2d411c01445b93993d80402a2ee3183bde0b6207d3436e78f05b63eb71628b5",
                "md5": "8278d3f3f521b49a59d861646d7e7949",
                "sha256": "a07e80de924b8bb31b71f260076ca399d989b141561edeb439915cb05c7489ce"
            },
            "downloads": -1,
            "filename": "rate_control-3.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8278d3f3f521b49a59d861646d7e7949",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 23276,
            "upload_time": "2024-04-27T08:00:59",
            "upload_time_iso_8601": "2024-04-27T08:00:59.197232Z",
            "url": "https://files.pythonhosted.org/packages/a2/d4/11c01445b93993d80402a2ee3183bde0b6207d3436e78f05b63eb71628b5/rate_control-3.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaca33efbcf1f08b3986e55e9e35981a4c00a4cb755e2b0bcf6e7ef7a38ac16e",
                "md5": "d2f42b2025c0e3d1c91a9d536485ada7",
                "sha256": "7a7c99140ad1b03f7f4857825256d97420c13cca5e5a9af2f21b1548c2d6a8c7"
            },
            "downloads": -1,
            "filename": "rate_control-3.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d2f42b2025c0e3d1c91a9d536485ada7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 13173,
            "upload_time": "2024-04-27T08:01:04",
            "upload_time_iso_8601": "2024-04-27T08:01:04.448056Z",
            "url": "https://files.pythonhosted.org/packages/ea/ca/33efbcf1f08b3986e55e9e35981a4c00a4cb755e2b0bcf6e7ef7a38ac16e/rate_control-3.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 08:01:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "corentin-regent",
    "github_project": "rate-control",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "rate-control"
}
        
Elapsed time: 0.26019s