Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import os
|
3 |
+
import shutil
|
4 |
+
from git import Repo
|
5 |
+
|
6 |
+
# Set up a directory for saving files
|
7 |
+
SAVE_DIR = "saved_projects"
|
8 |
+
|
9 |
+
if not os.path.exists(SAVE_DIR):
|
10 |
+
os.makedirs(SAVE_DIR)
|
11 |
+
|
12 |
+
def save_uploaded_files(uploaded_files):
|
13 |
+
"""Save uploaded files to the SAVE_DIR."""
|
14 |
+
project_dir = os.path.join(SAVE_DIR, "uploaded_project")
|
15 |
+
if os.path.exists(project_dir):
|
16 |
+
shutil.rmtree(project_dir) # Clean up existing files
|
17 |
+
os.makedirs(project_dir)
|
18 |
+
|
19 |
+
for uploaded_file in uploaded_files:
|
20 |
+
with open(os.path.join(project_dir, uploaded_file.name), "wb") as f:
|
21 |
+
f.write(uploaded_file.getbuffer())
|
22 |
+
return project_dir
|
23 |
+
|
24 |
+
def clone_repository(repo_url):
|
25 |
+
"""Clone a GitHub repository into SAVE_DIR."""
|
26 |
+
repo_name = repo_url.split("/")[-1].replace(".git", "")
|
27 |
+
repo_dir = os.path.join(SAVE_DIR, repo_name)
|
28 |
+
if os.path.exists(repo_dir):
|
29 |
+
shutil.rmtree(repo_dir) # Clean up existing files
|
30 |
+
Repo.clone_from(repo_url, repo_dir)
|
31 |
+
return repo_dir
|
32 |
+
|
33 |
+
def main():
|
34 |
+
st.title("Project Manager App")
|
35 |
+
st.write("Upload your project files or clone a GitHub repository.")
|
36 |
+
|
37 |
+
# Sidebar for navigation
|
38 |
+
option = st.sidebar.selectbox(
|
39 |
+
"Choose an option:",
|
40 |
+
("Upload Files", "Clone GitHub Repository")
|
41 |
+
)
|
42 |
+
|
43 |
+
if option == "Upload Files":
|
44 |
+
st.header("Upload Files")
|
45 |
+
uploaded_files = st.file_uploader(
|
46 |
+
"Upload your coding project files (multiple files allowed):",
|
47 |
+
accept_multiple_files=True
|
48 |
+
)
|
49 |
+
if uploaded_files:
|
50 |
+
saved_path = save_uploaded_files(uploaded_files)
|
51 |
+
st.success(f"Files saved to {saved_path}")
|
52 |
+
|
53 |
+
elif option == "Clone GitHub Repository":
|
54 |
+
st.header("Clone GitHub Repository")
|
55 |
+
repo_url = st.text_input("Enter the GitHub repository URL:")
|
56 |
+
if repo_url:
|
57 |
+
if st.button("Clone Repository"):
|
58 |
+
try:
|
59 |
+
repo_path = clone_repository(repo_url)
|
60 |
+
st.success(f"Repository cloned to {repo_path}")
|
61 |
+
except Exception as e:
|
62 |
+
st.error(f"Error cloning repository: {e}")
|
63 |
+
|
64 |
+
# Display saved projects
|
65 |
+
st.header("Saved Projects")
|
66 |
+
if os.listdir(SAVE_DIR):
|
67 |
+
for project in os.listdir(SAVE_DIR):
|
68 |
+
st.write(f"- {project}")
|
69 |
+
else:
|
70 |
+
st.write("No projects saved yet.")
|
71 |
+
|
72 |
+
if __name__ == "__main__":
|
73 |
+
main()
|