I'm trying to run multiple Django development server using a python script, normally I run the server using a terminal command "python manage.py runserver PORTNumber". I want to be able to run multiple instances on different ports, but when trying to use os.system, I get blocked; I made a thread that contained the os.system command, but when opening it I get blocked too. Any ideas how to prevent that, or a way around to run the development server on multiple ports ?
Thanks in advance.