Use Cloud Tasks to easily defer functions executions
Project description
Async Cloud Tasks
Use Cloud Tasks to easily defer functions executions in your web applications 🍯
Inspired by django-cloud-tasks, thanks to GeorgeLubaretsi 👏🏻👏🏻👏🏻
Integrate Google Cloud Tasks with web applications without the need to create an exclusive endpoint to handle tasks.
The package provides easy to use decorator to create task handlers.
App looks for tasks in cloud_tasks.py files in your installed applications and auto-registers them.
Prerequisites
- Python 3.7+
Dependencies
Support
- IMPORTANT: Now it is only giving support for Django framework.
Installation
Install the package from PyPi
pip install async-cloud-tasks
Add async_cloud_tasks to INSTALLED_APPS:
INSTALLED_APPS = (
# ...
'async_cloud_tasks',
# ...
)
Add configuration to your settings
ASYNC_CLOUD_TASKS={
'gcp_location': '<GCP TASK QUEUE LOCATION>',
'gcp_project_name': '<GCP TASK QUEUE PROJECT NAME>',
'task_handler_root_url': '_tasks/',
'service_url': '<BASE SERVICE URL>',
'handler_secret': '<SECRET KEY TO BE USED FOR TASK HANDLER AUTHENTICATION>'
}
# This setting allows you to debug your cloud tasks by running actual task handler function locally
# instead of sending them to the task queue. Default: False
ASYNC_CLOUD_TASKS_EXECUTE_LOCALLY = False
Add cloud task views to your urls.py (must resolve to the same url as task_handler_root_url)
# urls.py
# ...
from django.urls import path, include
from async_cloud_tasks import urls as dct_urls
urlpatterns = [
# ...
path('_tasks/', include(dct_urls)),
]
Quick start (only for Django)
Simply import the task decorator and define the task inside cloud_tasks.py in your app.
First parameter should always be request which is populated after task is executed by Cloud Task service.
You can get actual request coming from Cloud Task service by accessing request.request in your task body and
additional attributes such as: request.task_id, request.request_headers
# cloud_tasks.py
# ...
from async_cloud_tasks.decorators import task
@task(queue='default')
def example_task(request, p1, p2):
print(p1, p2)
print(request.task_id)
Pushing the task to the queue:
from my_app.cloud_tasks import example_task
example_task(p1='1', p2='2').defer()
It is also possible to run an actual function using run method of CloudTaskWrapper object instance that is returned after task is called (this can be useful for debugging):
task = example_task(p1=i, p2=i)
task.run()
References
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file async-cloud-tasks-0.0.3.tar.gz.
File metadata
- Download URL: async-cloud-tasks-0.0.3.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3770e8ba32eddc89efb4afc80a1542bde46209309b390ebd4a9aba55be68225
|
|
| MD5 |
8a18c00e8cb0032282712fed976f098f
|
|
| BLAKE2b-256 |
71110d00a4b71af0cc8963993f72021636a92fee9364ca06dd59afcab2cc2681
|
File details
Details for the file async_cloud_tasks-0.0.3-py3-none-any.whl.
File metadata
- Download URL: async_cloud_tasks-0.0.3-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7152a91e3d115ee517dc90df86f144697b2142df0ad33dc1a8e1b173915931d6
|
|
| MD5 |
795dbdaa1cf259eb936addea481f490f
|
|
| BLAKE2b-256 |
6cf350930eea76c6aa423b365ce285540ad5e98b9134212e19893bf8d36de16d
|