{"id":13396894,"url":"https://github.com/mher/flower","last_synced_at":"2025-05-13T15:08:12.197Z","repository":{"id":3861269,"uuid":"4946406","full_name":"mher/flower","owner":"mher","description":"Real-time monitor and web admin for Celery distributed task queue","archived":false,"fork":false,"pushed_at":"2024-09-01T09:28:25.000Z","size":5256,"stargazers_count":6707,"open_issues_count":161,"forks_count":1111,"subscribers_count":142,"default_branch":"master","last_synced_at":"2025-04-22T11:31:40.591Z","etag":null,"topics":["administration","asynchronous","celery","monitoring","python","rabbitmq","redis","task-queue","workers"],"latest_commit_sha":null,"homepage":"https://flower.readthedocs.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mher.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2012-07-08T13:35:09.000Z","updated_at":"2025-04-22T08:00:07.000Z","dependencies_parsed_at":"2023-09-24T09:27:57.622Z","dependency_job_id":"5265e977-4af0-49a3-9ab8-92821ab93c6a","html_url":"https://github.com/mher/flower","commit_stats":{"total_commits":1158,"total_committers":219,"mean_commits":5.287671232876712,"dds":"0.40759930915371334","last_synced_commit":"d6898881a36945ebab86d6f00f1d2d16dbac7b06"},"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mher%2Fflower","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mher%2Fflower/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mher%2Fflower/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mher%2Fflower/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mher","download_url":"https://codeload.github.com/mher/flower/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252577020,"owners_count":21770721,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["administration","asynchronous","celery","monitoring","python","rabbitmq","redis","task-queue","workers"],"created_at":"2024-07-30T18:01:06.979Z","updated_at":"2025-05-05T21:10:41.252Z","avatar_url":"https://github.com/mher.png","language":"Python","readme":"Flower\n======\n\n.. image:: https://img.shields.io/pypi/dm/flower.svg\n    :target: https://pypistats.org/packages/flower\n    :alt: PyPI - Downloads\n.. image:: https://img.shields.io/docker/pulls/mher/flower.svg\n    :target: https://hub.docker.com/r/mher/flower\n    :alt: Docker Pulls\n.. image:: https://github.com/mher/flower/workflows/Build/badge.svg\n    :target: https://github.com/mher/flower/actions\n.. image:: https://img.shields.io/pypi/v/flower.svg\n    :target: https://pypi.python.org/pypi/flower\n\nFlower is an open-source web application for monitoring and managing Celery clusters.\nIt provides real-time information about the status of Celery workers and tasks.\n\nFeatures\n--------\n\n- Real-time monitoring using Celery Events\n    - View task progress and history\n    - View task details (arguments, start time, runtime, and more)\n- Remote Control\n    - View worker status and statistics\n    - Shutdown and restart worker instances\n    - Control worker pool size and autoscale settings\n    - View and modify the queues a worker instance consumes from\n    - View currently running tasks\n    - View scheduled tasks (ETA/countdown)\n    - View reserved and revoked tasks\n    - Apply time and rate limits\n    - Revoke or terminate tasks\n- Broker monitoring\n    - View statistics for all Celery queues\n- HTTP Basic Auth, Google, Github, Gitlab and Okta OAuth\n- Prometheus integration\n- API\n\nInstallation\n------------\n\nInstalling `flower` with `pip \u003chttp://www.pip-installer.org/\u003e`_ is simple ::\n\n    $ pip install flower\n\nThe development version can be installed from Github ::\n\n    $ pip install https://github.com/mher/flower/zipball/master#egg=flower\n\nUsage\n-----\n\nTo run Flower, you need to provide the broker URL ::\n\n    $ celery --broker=amqp://guest:guest@localhost:5672// flower\n\nOr use the configuration of `celery application \u003chttps://docs.celeryq.dev/en/stable/userguide/application.html\u003e`_  ::\n\n    $ celery -A tasks.app flower\n\nBy default, flower runs on port 5555, which can be modified with the `port` option ::\n\n    $ celery -A tasks.app flower --port=5001\n\nYou can also run Flower using the docker image ::\n\n    $ docker run -v examples:/data -p 5555:5555 mher/flower celery --app=tasks.app flower\n\nIn this example, Flower is using the `tasks.app` defined in the `examples/tasks.py \u003chttps://github.com/mher/flower/blob/master/examples/tasks.py\u003e`_ file\n\nAPI\n---\n\nFlower API enables to manage the cluster via HTTP `REST API`.\n\nFor example you can restart worker's pool by: ::\n\n    $ curl -X POST http://localhost:5555/api/worker/pool/restart/myworker\n\nOr call a task by: ::\n\n    $ curl -X POST -d '{\"args\":[1,2]}' http://localhost:5555/api/task/async-apply/tasks.add\n\nOr terminate executing task by: ::\n\n    $ curl -X POST -d 'terminate=True' http://localhost:5555/api/task/revoke/8a4da87b-e12b-4547-b89a-e92e4d1f8efd\n\nFor more info checkout `API Reference`_\n\n.. _API Reference: https://flower.readthedocs.io/en/latest/api.html\n\nDocumentation\n-------------\n\nDocumentation is available at `Read the Docs`_\n\n.. _Read the Docs: https://flower.readthedocs.io\n\nLicense\n-------\n\nFlower is licensed under BSD 3-Clause License.\nSee the `License`_ file for the full license text.\n\n.. _`License`: https://github.com/mher/flower/blob/master/LICENSE\n","funding_links":[],"categories":["Admin Panels","Third-Party Packages","Python","资源列表","管理面板","Release Features","Tasks","Admin Panels [🔝](#readme)","Administration and Monitoring","Awesome Python","HarmonyOS","Содержание:"],"sub_categories":["Task Queues","管理面板","Tools","Admin Panels","Windows Manager","Celery"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmher%2Fflower","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmher%2Fflower","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmher%2Fflower/lists"}