File size: 497 Bytes
c17ee23
 
 
 
 
 
7b98d63
 
c17ee23
 
7b98d63
c17ee23
 
 
7b98d63
c17ee23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import subprocess


def run_command(command):
    try:
        output = subprocess.check_output(
            command, shell=True, stderr=subprocess.STDOUT, universal_newlines=True
        )
        print(output)
    except subprocess.CalledProcessError as e:
        print(f"Command execution failed with return code {e.returncode}: {e.output}")


# Example usage
command = "uvicorn App.app:app --host 0.0.0.0 --port 7860 & celery -A App.Worker.celery worker --loglevel=info"
run_command(command)