Skip to main content

A Publish and Subscribe library for Celery

Project description

celery-pubsub 0.2.1

https://travis-ci.org/Mulugruntz/celery-pubsub.svg?branch=master Code Climate Test Coverage Issue Count Downloads

Publish and Subscribe with Celery

Basic usage:

import celery
import celery_pubsub

@celery.task
def my_task_1(*args, **kwargs):
    return "task 1 done"


@celery.task
def my_task_2(*args, **kwargs):
    return "task 2 done"


# First, let's subscribe
celery_pubsub.subscribe('some.topic', my_task_1)
celery_pubsub.subscribe('some.topic', my_task_2)

# Now, let's publish something
res = celery_pubsub.publish('some.topic', data='something', value=42)

# We can get the results if we want to (and if the tasks returned something)
# But in pub/sub, usually, there's no result.
print(res.get())

# This will get nowhere, as no task subscribed to this topic
res = celery_pubsub.publish('nowhere', data='something else', value=23)

Advanced usage:

Wildcards can be used in topic names:

  • * matches any one group
    • some.*.test will match some.awesome.test, some.random.test but not some.pretty.cool.test, elsewhere or here.some.up.test

    • some.* will match some.test and some.thing but it won’t match some or some.testy.test

  • # matches any number of groups
    • some.#.test will match some.awesome.test, some.random.test, some.pretty.cool.test but not elsewhere or here.some.up.test

    • some.# will match anything that starts with some., such as some.very.specific.topic.indeed

    • # will match anything

# Let's subscribe
celery_pubsub.subscribe('some.*', my_task_1)
celery_pubsub.subscribe('some.*.test', my_task_2)
celery_pubsub.subscribe('some.#', my_task_3)
celery_pubsub.subscribe('#', my_task_4)
celery_pubsub.subscribe('some.beep', my_task_5)
# it's okay to have more than one task on the same topic
celery_pubsub.subscribe('some.beep', my_task_6)

# Let's publish
celery_pubsub.publish('nowhere', 4)               # task 4 only
celery_pubsub.publish('some', 8)                  # task 4 only
celery_pubsub.publish('some.thing', 15)           # tasks 1, 3 and 4
celery_pubsub.publish('some.true.test', 16)       # tasks 2, 3 and 4
celery_pubsub.publish('some.beep', 23)            # tasks 1, 3, 4, 5 and 6
celery_pubsub.publish('some.very.good.test', 42)  # tasks 3 and 4

# And if you want to publish synchronously:
celery_pubsub.publish_now('some.very.good.test', 42)  # tasks 3 and 4

# You can unsubscribe too
celery_pubsub.unsubscribe('#', my_task_4)

# Now, task 4 will not be called anymore
celery_pubsub.publish('some.very.good.test', 42)  # task 3 only

Changelog:

  • 0.2.1
    • Performance: Internally uses a set to store the subscribed tasks.

    • Updated Codeclimate as the old reporter is deprecated.

    • Pinned requirements’ dependency versions.
      • celery 4.3.0 -> 4.4.0

      • kombu 4.6.4 -> 4.6.7

      • billiard 3.6.1.0 -> 3.6.2.0

      • codeclimate-test-reporter 0.2.3 -> removed!

  • 0.2.0
    • Removed Python 3.4 support. Reason: no longer supported by Kombu 4.6+.

    • Officially supported by Python 3.8.

    • Pinned requirements’ dependency versions.
      • celery 4.2.1 -> 4.3.0

      • kombu 4.2.1 -> 4.6.4

      • billiard 3.5.0.4 -> 3.6.1.0

      • vine 1.1.4 -> 1.3.0

  • 0.1.9
    • Added Python 3.4, 3.5, 3.7, and multiple branches of pypy

    • Pinned requirements’ dependency versions.
      • celery 4.1.0 -> 4.2.1

      • kombu 4.1.0 -> 4.2.1

      • billiard 3.5.0 -> 3.5.0.4

      • nose pinned to 1.3.7

      • coverage pinned to 4.3.4 (was already 4.3.4 but fuzzy)

      • codeclimate-test-reported pinned to 0.2.3

    • Extra badge to show the number of downloads (thanks to PePy)

  • 0.1.8
    • Fixup for broken pip install celery_pubsub==0.1.7

  • 0.1.7
    • PyPI long description fixed

    • Removed README.md and fixed README.rst

    • Added command python setup.py test to run unit tests with coverage

    • pypy support

  • 0.1.5
    • Python 3 support

  • 0.1.1
    • Added README

    • Refined setup

    • No need to access celery_pubsub.pubsub anymore. Direct access in celery_pubsub.

    • Tests moved out of package

    • Added Travis for CI

  • 0.1
    • Initial version

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

celery-pubsub-0.2.1.tar.gz (5.3 kB view details)

Uploaded Source

Built Distributions

celery_pubsub-0.2.1-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

celery_pubsub-0.2.1-py2-none-any.whl (4.8 kB view details)

Uploaded Python 2

File details

Details for the file celery-pubsub-0.2.1.tar.gz.

File metadata

  • Download URL: celery-pubsub-0.2.1.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.5

File hashes

Hashes for celery-pubsub-0.2.1.tar.gz
Algorithm Hash digest
SHA256 1843c828f9776a67efa30403df2dd9a40ae96fa9c292fe70860f53edd6adb699
MD5 6e152a3ee80424cc91c72107f7f591dd
BLAKE2b-256 942244a646926b426c3cfde20f221ee423592b63ba86e5c7f421768c5709926b

See more details on using hashes here.

File details

Details for the file celery_pubsub-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: celery_pubsub-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.5

File hashes

Hashes for celery_pubsub-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 831676688cced7c0b291d9484bef56d3088cb93d83cd2ad34de61f98414ea7c4
MD5 90406e7d9a3f1b258a250597135b95ed
BLAKE2b-256 f63a4d7d9538a1924419df4b15387c127d8fb6a665156a4e249fba69fb8059be

See more details on using hashes here.

File details

Details for the file celery_pubsub-0.2.1-py2-none-any.whl.

File metadata

  • Download URL: celery_pubsub-0.2.1-py2-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.5

File hashes

Hashes for celery_pubsub-0.2.1-py2-none-any.whl
Algorithm Hash digest
SHA256 1a44c92a1ceb3f48d40c98b2eb33671758d34d47d241f3d1c76c6f202f762d85
MD5 c218202534ff3b70930375e0214243c7
BLAKE2b-256 03b23aa4615ffb40fbcccbc0727c7c520b43979c447eeda65782f27454423e9f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page