Taskhawk Python Library
Project description
TaskHawk is a replacement for celery that works on AWS SQS/SNS, 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:
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_QUEUE = "DEV-MYAPP"
For Django projects, simple use Django settings to configure Taskhawk, for non-Django projects, you must declare an environment variable called SETTINGS_MODULE that points to a module where settings may be found.
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/Automatic/taskhawk-python.git
$ cd taskhawk-python
$ pyenv virtualenv 3.6.5 taskhawk-3.6
...
$ pyenv activate taskhawk-3.6
$ pip install -r requirements/dev-3.6.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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file taskhawk-2.0.0.tar.gz
.
File metadata
- Download URL: taskhawk-2.0.0.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67e1ff4c82e9ba93e75b0d55e2614ae51a169d69f621e861595fa4a2038fc48b |
|
MD5 | dc512be7f7cd1fe135fa83c08e313f3a |
|
BLAKE2b-256 | 8f0616fb1435e02ed8560b676fce8c36ab466dc8715a9e9173f2455687cc13bc |
File details
Details for the file taskhawk-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: taskhawk-2.0.0-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80783e78e8715d0465e289cd15a63b8d8df89e3b679180f8ac7efd441faf8d28 |
|
MD5 | 7b9edeff9c838ab85bd3599be86ced60 |
|
BLAKE2b-256 | 0aade330ffb3cadef3a73314ebebe0d72d8a41a4a94e02bbdb0561f7d8cda6bd |