Вы можете видеть, что когда кто-то посещает URL, он запускает другой процесс:
from django.http import HttpResponse
from django.views.generic import View
import subprocess
class ExecutePythonFileView(View):
def get(self, request):
# Execute script
subprocess.call(['python', 'somescript.py'])
# Return response
return HttpResponse("Executed!")