4 lines
166 B
Python
4 lines
166 B
Python
import subprocess
|
|
if (subprocess.run("mysql -u root mysql < SQL_code/Schema.sql", shell=True, check=True)):
|
|
print("successfully created the Marketplace databse")
|