Easy async function execution in Python/Django using a queue and consumer Thread

I didn’t want to setup django-q2, Celery, or any of the other heavier background task running options for Django, since I just wanted to do basic API calls and save tracking data to the db, without blocking user requests. My async work also didn’t need to be transactional, so losing the queue due to app …

Easy async function execution in Python/Django using a queue and consumer Thread Read More »