Spaces:
Running
Running
import os | |
import time | |
import shutil | |
import subprocess | |
command = ["pip", "install", "flet"] | |
subprocess.run(command, check=True) | |
command = ["pip", "install", "flet-fastapi==0.19.0", "--no-deps"] | |
subprocess.run(command, check=True) | |
gh_token = os.getenv("gh_token") | |
url_with_token = f"https://{gh_token}@github.com/Eslam-Magdy-1297/Adel_Flet_Demo.git" | |
os.system(f"git clone {url_with_token}") | |
time.sleep(10) | |
source_dir = "Adel_Flet_Demo" | |
destination_dir = "." | |
for item in os.listdir(source_dir): | |
s = os.path.join(source_dir, item) | |
d = os.path.join(destination_dir, item) | |
shutil.move(s, d) | |
os.rmdir(source_dir) | |
with open("main.py", "r") as file: | |
code = file.read() | |
exec(code) | |