Problem
Please tell me how to do Django tasks in parallel, like I've 3 accounts sending 3 forms at same time, each form on one account, I want the forms to be sent at the same time on the background. Currently, I'm sending the forms with celery on background, I just want them to run on parallel instead of a queue.
Info
When I send a form, it sends private messages using selenium to many users from a csv file
Without Celery
It works great without celery, and they send in parallel but I'm trying to get them work on background due to heavy loads on the server