How can i use multiprocessing in django to run different tasks simultaneously?

Welcome @yanmendonca !

Generally speaking, the currently-accepted practice is to use Celery (or something similar) to run background tasks.

See django-tasks - bringing background workers in to Django core for another approach that is in the works.