Skip to main content

Taskhawk Python Library

Project description

https://travis-ci.org/cloudchacho/taskhawk-python.svg?branch=master https://coveralls.io/repos/github/cloudchacho/taskhawk-python/badge.svg?branch=master https://img.shields.io/pypi/v/taskhawk.svg?style=flat-square https://img.shields.io/pypi/pyversions/taskhawk.svg?style=flat-square https://img.shields.io/pypi/implementation/taskhawk.svg?style=flat-square https://img.shields.io/badge/code%20style-black-000000.svg

TaskHawk is a replacement for celery that works on AWS SQS/SNS and Google PubSub, while keeping things pretty simple and straightforward. Any unbound function can be converted into a TaskHawk task.

Only Python 3.6+ is supported currently.

You can find the latest, most up to date, documentation at Read the Docs.

Quick Start

First, install the library:

$ pip install taskhawk

Next, set up a few configuration settings:

Common required settings:

TASKHAWK_QUEUE = "DEV-MYAPP"

When using AWS, additional required settings are:

AWS_ACCESS_KEY = <YOUR AWS KEY>
AWS_ACCOUNT_ID = <YOUR AWS ACCOUNT ID>
AWS_REGION = <YOUR AWS REGION>
AWS_SECRET_KEY = <YOUR AWS SECRET KEY>

TASKHAWK_CONSUMER_BACKEND = 'taskhawk.backends.aws.AWSSQSConsumerBackend'
TASKHAWK_PUBLISHER_BACKEND = 'taskhawk.backends.aws.AWSSNSPublisherBackend'

In case of GCP, additional required settings are:

TASKHAWK_CONSUMER_BACKEND = 'taskhawk.backends.gcp.GooglePubSubConsumerBackend'
TASKHAWK_PUBLISHER_BACKEND = 'taskhawk.backends.gcp.GooglePubSubPublisherBackend'

If running outside Google Cloud (e.g. locally), set GOOGLE_APPLICATION_CREDENTIALS.

Within Google Cloud, these credentials and permissions are managed by Google using IAM.

If the Pub/Sub resources lie in a different project, set GOOGLE_CLOUD_PROJECT to the project id.

For Django projects, simple use Django settings to configure Taskhawk. For Flask projects, use Flask config. For other frameworks, you can either declare an environment variable called SETTINGS_MODULE that points to a module where settings may be found, or manually configure using taskhawk.conf.settings.configure_with_object.

Then, simply add the decorator taskhawk.task to your function:

@taskhawk.task
def send_email(to: str, subject: str, from_email: str = None) -> None:
    # send email

And finally, dispatch your function asynchronously:

send_email.dispatch('example@email.com', 'Hello!', from_email='example@spammer.com')

Development

Getting Started

Assuming that you have Python, pyenv and pyenv-virtualenv installed, set up your environment and install the required dependencies like this instead of the pip install taskhawk defined above:

$ git clone https://github.com/cloudchacho/taskhawk-python.git
$ cd taskhawk-python
$ pyenv virtualenv 3.7.7 taskhawk-python-3.7
...
$ pyenv activate taskhawk-python-3.7
$ pip install -r requirements/dev-3.7.txt

Running Tests

You can run tests in using make test. By default, it will run all of the unit and functional tests, but you can also specify your own py.test options.

$ py.test
$ py.test tests/test_consumer.py

Generating Documentation

Sphinx is used for documentation. You can generate HTML locally with the following:

$ pip install -e .[dev]
$ make docs

Getting Help

We use GitHub issues for tracking bugs and feature requests.

  • If it turns out that you may have found a bug, please open an issue

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

taskhawk-4.1.2.tar.gz (28.9 kB view details)

Uploaded Source

Built Distribution

taskhawk-4.1.2-py3-none-any.whl (27.3 kB view details)

Uploaded Python 3

File details

Details for the file taskhawk-4.1.2.tar.gz.

File metadata

  • Download URL: taskhawk-4.1.2.tar.gz
  • Upload date:
  • Size: 28.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.7

File hashes

Hashes for taskhawk-4.1.2.tar.gz
Algorithm Hash digest
SHA256 058daf95d30758343fd3682cf638d813a805410284dfe7d732218292b2b0800b
MD5 d53f950756709972e02cba680cb5fa4d
BLAKE2b-256 880da53148e01ffebf63d87fa01f02ffc30731dcaffbaf2239559877ddb157a8

See more details on using hashes here.

File details

Details for the file taskhawk-4.1.2-py3-none-any.whl.

File metadata

  • Download URL: taskhawk-4.1.2-py3-none-any.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.7

File hashes

Hashes for taskhawk-4.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e3673bdb5e12da5b316e0cabec30d5a9b3b642ece80c5debaca17883957d882c
MD5 a65ebf47a84ad8583e52e926dace2636
BLAKE2b-256 1bbc10d3ee7126637c7e9a66444abca9329fc60edb2d3b86f0300d2413b69ac3

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