Home > Back-end >  Python: Django: How to run django app using a python script
Python: Django: How to run django app using a python script

Time:09-29

I've a python file named "config.py" which actually checks the ip of user and run the django server on that port accordingly.
The method I used there was to create a batch file using python and execute it later.

import socket
import subprocess
x = socket.gethostbyname(socket.gethostname())
x = str(x)
with open("run.bat", "w") as f:
    f.write(f'manage.py runserver {x}:0027')
subprocess.call([r'run.bat'])

But this method is not very effective. I want a way like:
import something something.run("manage.py")

or something accordingly
Kindly Help me doing this

CodePudding user response:

I think the method you're trying to reach is to run a shell command inside a python script, which can be achieved by using the os.system() function.

You can use it in your code as the following:

import socket
import subprocess
import os
x = socket.gethostbyname(socket.gethostname())
x = str(x)
os.system(f'manage.py runserver {x}:0027')
  • Related