Skip to main content

Brokkoly is a framework for enqueuing messages via HTTP request for celery.

Project description

https://travis-ci.org/narusemotoki/brokkoly.svg?branch=master

Brokkoly is a framework for enqueuing messages via HTTP request for celery.

Example

tasks.py:

import brokkoly

b = brokkoly.Brokkoly('example', 'redis://localhost:6379/0')
celery = b.celery


def two_times(text: str) -> dict:
    return {
        'text': text * 2
    }


@b.task(two_times)
def echo(text: str) -> None:
    print(text)

two_times works as pre processor. It works before enqueing. It means it can return BadRequest to your client. Brokkoly validate message with typehint. Also you can have extra validation and any other process here.

Run celery -A tasks worker --loglevel=info

producer.py:

import brokkoly

import tasks  # NOQA

application = brokkoly.producer()

producer is WSGI application. You need to import your tasks for put message into queue.

Run with uWSGI uwsgi --http :8080 --wsgi-file producer.py --enable-threads --thunder-lock --master

Send Test Message!

curl -X POST -d '{"message":{"text": "Hello"}}' http://localhost:8080/example/echo

  1. producer receives your request

  2. producer validates your message having text and the type is str or not. text`(str) is from typehint of two_times

  3. producer validates two_times returned value having text and the type is str or not. text`(str) is from typehint of echo

  4. producer put message {"message":{"text":"HelloHello"}} into queue.

  5. curl receives response.

  6. Celery calls echo

Extra

preprocessor is optional. if you don’t need it, you can:

@b.task()
def echo(text: str) -> None:
    print(text)

Also you can give multiple preprocessor:

@b.task(two_times, two_times)
def echo(text: str) -> None:
    print(text)

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

brokkoly-0.0.2.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file brokkoly-0.0.2.tar.gz.

File metadata

  • Download URL: brokkoly-0.0.2.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for brokkoly-0.0.2.tar.gz
Algorithm Hash digest
SHA256 e17f7ee759256af9f79298117396c2401d1cbb58645f1b04c95ddd3b0bc671e8
MD5 db209d55908f6e560cdd3c39b51a22f8
BLAKE2b-256 8ff6b8500b7323a3dd3a7ec92218572a8b318527eb417f65ec8dc999f0a16d28

See more details on using hashes here.

Provenance

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