Django Q is a scheduler and a task queue for Django. In this series you'll learn how to use Django Q in your Django applications for queuing long-running tasks.
In this episode:
- hands on Django Q
- using async_task
Enjoy!
Django Q is a scheduler and a task queue for Django. In this series you'll learn how to use Django Q in your Django applications for queuing long-running tasks.
In this episode:
Enjoy!
For further actions, you may consider blocking this person and/or reporting abuse
Daniel Azevedo -
Tutort Academy -
Agbo, Daniel Onuoha -
Marceli Borowczak -
Top comments (1)
Hey, first of all thanks for sharing!
I'm trying to populate my database using a Data Migration.
In my populate function I have 2 api calls, so the shape is something like this:
And then, I have my migration class:
Running the migration a Runtime Warning is raised:
So I try to decorate my Migration with Async Await without success.
How should I do that? And again, any problem to have async tasks inside a sync for loop?