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
Sachin -
ghubrakesh -
Jairus Joer -
Jonas Scholz -
Once suspended, valentinogagliardi will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, valentinogagliardi will be able to comment and publish posts again.
Once unpublished, all posts by valentinogagliardi will become hidden and only accessible to themselves.
If valentinogagliardi is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Valentino Gagliardi.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag valentinogagliardi:
Unflagging valentinogagliardi will restore default visibility to their posts.
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?