Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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")
|