{"id":41586208,"url":"https://github.com/wiremind/remoulade","last_synced_at":"2026-01-24T09:06:25.154Z","repository":{"id":40506232,"uuid":"152734608","full_name":"wiremind/remoulade","owner":"wiremind","description":"A fast and reliable distributed task processing library for Python 3.","archived":false,"fork":false,"pushed_at":"2026-01-13T10:55:50.000Z","size":2832,"stargazers_count":52,"open_issues_count":20,"forks_count":20,"subscribers_count":6,"default_branch":"master","last_synced_at":"2026-01-13T13:44:10.125Z","etag":null,"topics":["python","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wiremind.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-10-12T10:30:08.000Z","updated_at":"2026-01-13T10:53:13.000Z","dependencies_parsed_at":"2023-02-14T09:02:07.597Z","dependency_job_id":"2a10befe-5e65-4590-8fc7-3a7925c59084","html_url":"https://github.com/wiremind/remoulade","commit_stats":null,"previous_names":[],"tags_count":175,"template":false,"template_full_name":null,"purl":"pkg:github/wiremind/remoulade","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fremoulade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fremoulade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fremoulade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fremoulade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiremind","download_url":"https://codeload.github.com/wiremind/remoulade/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremind%2Fremoulade/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28722043,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T08:27:05.734Z","status":"ssl_error","status_checked_at":"2026-01-24T08:27:01.197Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","python3"],"created_at":"2026-01-24T09:06:25.096Z","updated_at":"2026-01-24T09:06:25.147Z","avatar_url":"https://github.com/wiremind.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://remoulade.readthedocs.io/en/latest/_static/logo.png\" align=\"right\" width=\"131\" /\u003e\n\n# remoulade\n\n[![CircleCI](https://circleci.com/gh/wiremind/remoulade.svg?style=svg)](https://circleci.com/gh/wiremind/remoulade)\n[![PyPI version](https://badge.fury.io/py/remoulade.svg)](https://badge.fury.io/py/remoulade)\n[![Documentation](https://img.shields.io/badge/doc-latest-brightgreen.svg)](http://remoulade.readthedocs.io)\n\n*A fast and reliable distributed task processing library for Python 3.* Fork of dramatiq.io\n\n\u003chr/\u003e\n\n**Changelog**: \u003chttps://remoulade.readthedocs.io/en/latest/changelog.html\u003e \u003cbr/\u003e\n**Documentation**: \u003chttps://remoulade.readthedocs.io\u003e\n\n\u003chr/\u003e\n\n## Installation\n\nIf you want to use it with [RabbitMQ]\n\n```console\n    uv pip install 'remoulade[rabbitmq]'\n```\n\nor if you want to use it with [Redis]\n\n```console\n   uv pip install 'remoulade[redis]'\n```\n\n## Quickstart\n\n1. Make sure you've got [RabbitMQ] running, then create a new file called\n`example.py`:\n\n``` python\nfrom remoulade.brokers.rabbitmq import RabbitmqBroker\nimport remoulade\nimport requests\nimport sys\n\nbroker = RabbitmqBroker()\nremoulade.set_broker(broker)\n\n\n@remoulade.actor\ndef count_words(url):\n    response = requests.get(url)\n    count = len(response.text.split(\" \"))\n    print(f\"There are {count} words at {url!r}.\")\n\n\nbroker.declare_actor(count_words)\n\nif __name__ == \"__main__\":\n    count_words.send(sys.argv[1])\n```\n\n2. In one terminal, run your workers:\n\n```console\n   remoulade example\n```\n\n3. In another, start enqueueing messages:\n\n```console\n   python3 example.py http://example.com\n   python3 example.py https://github.com\n   python3 example.py https://news.ycombinator.com\n```\n\nVisit the [user guide] to see more features!.\n\n## Releasing\n\nIf you want to contribute to the project. First make a Pull request and get approval from a Maintainer and then:\n\n1. Merge your pull request\n2. Push a tag (must start with a `v`) from the commit you want (usually, the `master` branch)\n  a. You can create a new release on Github (recommended). This will create and push the tag for you.\n  b. Update your local clone, checkout `master`, `git tag` and then `git push --tags`\n\nThis will trigger a CI/CD pipeline that publish the package\n\n## Dashboard\n\nCheck out [SuperBowl](https://github.com/wiremind/super-bowl) a dashboard for real-time monitoring and administrating all your Remoulade tasks.\n***See the current progress, enqueue, requeue, cancel and more ...***\nSuper easy to use !.\n\n## Kubernetes\n\nRemoulade is tailored to run transparently in containers on [Kubernetes](https://kubernetes.io/) and to make the most of their features. This does not mean it cannot run outside of Kubernetes ;)\n\n## Monitoring/Prometheus\n\nRemoulade provides a `Prometheus` Middleware that exposes various metrics (processed messages, retries, fails etc.), [Check it out](https://github.com/wiremind/remoulade/blob/master/remoulade/middleware/prometheus.py).\n\n## Tracing/OpenTelemtry\n\nTake a look at [opentelemetry-instrumentation-remoulade](https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-remoulade) if you want to enable tracing for Remoulade operations (enqueue, message processing, retries etc.). See [here](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/instrumentation/opentelemetry-instrumentation-remoulade/src/opentelemetry/instrumentation/remoulade/__init__.py) for an example.\nThe library follows [OpenTelemetry](https://opentelemetry.io/) standards.\n\n## License\n\nremoulade is licensed under the LGPL.  Please see [COPYING] and\n[COPYING.LESSER] for licensing details.\n\n[COPYING.LESSER]: https://github.com/wiremind/remoulade/blob/master/COPYING.LESSER\n[COPYING]: https://github.com/wiremind/remoulade/blob/master/COPYING\n[RabbitMQ]: https://www.rabbitmq.com/\n[Redis]: https://redis.io\n[user guide]: https://remoulade.readthedocs.io/en/latest/guide.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiremind%2Fremoulade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiremind%2Fremoulade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiremind%2Fremoulade/lists"}