xdragxt commited on
Commit
dd52df4
·
1 Parent(s): b2bdff9

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ # Clone the GitHub repository
4
+ os.system("git clone https://github.com/taslim19/Seonari")
5
+
6
+ # Navigate into the cloned repository directory
7
+ os.chdir("Seonari")
8
+
9
+ # Install dependencies from requirements.txt
10
+ os.system("pip install -r requirements.txt")
11
+
12
+ # Run the main Python file
13
+ os.system("python3 -m Powers")