Run commands in python specified directory
import subprocess
path="D:\work_project\shijingshan"
subprocess.check_call('python3.8 manage.py makemigrations', shell=True, cwd=path)
subprocess.check_call('python3.8 manage.py migrate --database=default', shell=True, cwd=path)