bullmq


Namebullmq JSON
Version 2.7.5 PyPI version JSON
download
home_pageNone
SummaryBullMQ for Python
upload_time2024-04-28 16:59:55
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10.0
licenseNone
keywords python bullmq queues
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # BullMQ For Python

This is the official BullMQ Python library. It is a close port of the NodeJS version of the library.
Python Queues are interoperable with NodeJS Queues, as both libraries use the same .lua scripts that
power all the functionality.

## Features

Currently, the library does not support all the features available in the NodeJS version. The following
have been ported so far:

- [ ] Add jobs to queues.

  - [x] Regular jobs.
  - [x] Delayed jobs.
  - [ ] Job priority.
  - [ ] Repeatable.

- [x] Workers
- [ ] Job events.
- [x] Job progress.
- [ ] Job retries.
- [x] Job backoff.
- [x] Getters.

## Installation

```bash
pip install bullmq
```

## Usage

```python
from bullmq import Queue

queue = Queue('my-queue')

job = await queue.add('my-job', {'foo': 'bar'})

```

## Documentation

The documentation is available at [https://docs.bullmq.io](https://docs.bullmq.io/python)

## License

MIT

## Copyright

Copyright (c) 2018-2023, Taskforce.sh Inc. and other contributors.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bullmq",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10.0",
    "maintainer_email": null,
    "keywords": "python, bullmq, queues",
    "author": null,
    "author_email": "\"Taskforce.sh Inc.\" <manast@taskforce.sh>",
    "download_url": "https://files.pythonhosted.org/packages/41/17/97b6f196ac7e58248b07087190fe9db9cfe20770a90acf64d6a0da40e967/bullmq-2.7.5.tar.gz",
    "platform": null,
    "description": "# BullMQ For Python\n\nThis is the official BullMQ Python library. It is a close port of the NodeJS version of the library.\nPython Queues are interoperable with NodeJS Queues, as both libraries use the same .lua scripts that\npower all the functionality.\n\n## Features\n\nCurrently, the library does not support all the features available in the NodeJS version. The following\nhave been ported so far:\n\n- [ ] Add jobs to queues.\n\n  - [x] Regular jobs.\n  - [x] Delayed jobs.\n  - [ ] Job priority.\n  - [ ] Repeatable.\n\n- [x] Workers\n- [ ] Job events.\n- [x] Job progress.\n- [ ] Job retries.\n- [x] Job backoff.\n- [x] Getters.\n\n## Installation\n\n```bash\npip install bullmq\n```\n\n## Usage\n\n```python\nfrom bullmq import Queue\n\nqueue = Queue('my-queue')\n\njob = await queue.add('my-job', {'foo': 'bar'})\n\n```\n\n## Documentation\n\nThe documentation is available at [https://docs.bullmq.io](https://docs.bullmq.io/python)\n\n## License\n\nMIT\n\n## Copyright\n\nCopyright (c) 2018-2023, Taskforce.sh Inc. and other contributors.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "BullMQ for Python",
    "version": "2.7.5",
    "project_urls": {
        "Bug Tracker": "https://github.com/taskforcesh/bullmq/issues",
        "Homepage": "https://bullmq.io"
    },
    "split_keywords": [
        "python",
        " bullmq",
        " queues"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "411797b6f196ac7e58248b07087190fe9db9cfe20770a90acf64d6a0da40e967",
                "md5": "a599629482730682fd2908e33880f95f",
                "sha256": "26d783eb74e68e4f30df00a85241043ad4f1a05e41abe4a47160ac6222a7c9ff"
            },
            "downloads": -1,
            "filename": "bullmq-2.7.5.tar.gz",
            "has_sig": false,
            "md5_digest": "a599629482730682fd2908e33880f95f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10.0",
            "size": 47614,
            "upload_time": "2024-04-28T16:59:55",
            "upload_time_iso_8601": "2024-04-28T16:59:55.538186Z",
            "url": "https://files.pythonhosted.org/packages/41/17/97b6f196ac7e58248b07087190fe9db9cfe20770a90acf64d6a0da40e967/bullmq-2.7.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-28 16:59:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "taskforcesh",
    "github_project": "bullmq",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bullmq"
}
        
Elapsed time: 0.24775s