Skip to main content

Parsely is a framework for enqueuing messages via HTTP request for Celery.

Project description

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

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

CHANGELOG

Example

tasks.py:

from typing import Dict

import parsely


app = parsely.Parsely('example', 'redis://localhost:6379/0')


def two_times(text: str) -> Dict[str, str]:
    return {
        'text': text * 2
    }


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


worker = p.celery
producer = p.make_producer()

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

You can run tasks.py as Celery worker: celery -A tasks worker --loglevel=info

Also it runs as WSGI application. This is an example run it with uWSGI uwsgi --http :8080 --wsgi-file tasks.py --callable producer --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

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

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

Also you can give multiple preprocessor:

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

logging

Parsely uses logger witch named “parsely”, so you can set log level like:

import logging


parsely_logger = logging.getLogger('parsely')
parsely_logger.setLevel(logging.DEBUG)

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

parsely-0.7.0.tar.gz (10.9 kB view details)

Uploaded Source

File details

Details for the file parsely-0.7.0.tar.gz.

File metadata

  • Download URL: parsely-0.7.0.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for parsely-0.7.0.tar.gz
Algorithm Hash digest
SHA256 557576d116e320fb68b576135746b4c95b02755a835fd8fcd4dbc57f112b5cbf
MD5 75aff20fc117061cb2bbb91e4f887d77
BLAKE2b-256 61d3b0bb9d6c98fcf300d825967796171ffdc891b3b11ed8ce72a659c9ae3431

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