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