awacke1 commited on
Commit
6493dd4
·
1 Parent(s): 03387c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -38
app.py CHANGED
@@ -6,15 +6,10 @@ import base64
6
  from bs4 import BeautifulSoup
7
  import hashlib
8
  import json
9
- import uuid
10
 
11
  EXCLUDED_FILES = ['app.py', 'requirements.txt', 'pre-requirements.txt', 'packages.txt', 'README.md','.gitattributes', "backup.py","Dockerfile"]
12
- URLS = {
13
- "Chordify - Play Along Chords": "https://chordify.net/",
14
- "National Guitar Academy - Guitar Learning": "https://www.guitaracademy.com/",
15
- "Ultimate Guitar - Massive Song Database": "https://www.ultimate-guitar.com/",
16
- }
17
 
 
18
  if not os.path.exists("history.json"):
19
  with open("history.json", "w") as f:
20
  json.dump({}, f)
@@ -40,10 +35,12 @@ def download_html_and_files(url, subdir):
40
  file_url = urllib.parse.urljoin(base_url, link.get('href'))
41
  local_filename = os.path.join(subdir, urllib.parse.urlparse(file_url).path.split('/')[-1])
42
 
 
43
  if not local_filename.endswith('/') and local_filename != subdir:
44
  link['href'] = local_filename
45
  download_file(file_url, local_filename)
46
 
 
47
  with open(os.path.join(subdir, "index.html"), "w") as file:
48
  file.write(str(soup))
49
 
@@ -51,36 +48,24 @@ def list_files(directory_path='.'):
51
  files = [f for f in os.listdir(directory_path) if os.path.isfile(os.path.join(directory_path, f))]
52
  return [f for f in files if f not in EXCLUDED_FILES]
53
 
 
54
  def show_file_operations(file_path):
55
  st.write(f"File: {os.path.basename(file_path)}")
56
 
57
- # Generate a unique key for each file
58
- unique_key = hashlib.md5(file_path.encode()).hexdigest()
59
-
60
- # Additional unique identifier for each function call
61
- unique_call_id = str(uuid.uuid4())
62
-
63
- # Create columns for Edit, Save, and Delete buttons
64
- col1, col2, col3 = st.columns(3)
65
-
66
- with col1:
67
- if st.button(f"✏️ Edit", key=f"edit_{unique_key}_{unique_call_id}"):
68
- file_content = ""
69
- with open(file_path, "r") as f:
70
- file_content = f.read()
71
- file_content = st.text_area("Edit the file content:", value=file_content, height=250, key=f"text_area_{unique_key}_{unique_call_id}")
72
-
73
- with col2:
74
- if st.button(f"💾 Save", key=f"save_{unique_key}_{unique_call_id}"):
75
  with open(file_path, "w") as f:
76
  f.write(file_content)
77
- st.success(f"File saved!")
78
-
79
- with col3:
80
- if st.button(f"🗑️ Delete", key=f"delete_{unique_key}_{unique_call_id}"):
81
- os.remove(file_path)
82
- st.markdown(f"File deleted!")
83
 
 
 
 
 
84
 
85
  def show_download_links(subdir):
86
  st.write(f'Files for {subdir}:')
@@ -92,6 +77,7 @@ def show_download_links(subdir):
92
  else:
93
  st.write(f"File not found: {file}")
94
 
 
95
  def get_download_link(file):
96
  with open(file, "rb") as f:
97
  bytes = f.read()
@@ -99,19 +85,16 @@ def get_download_link(file):
99
  href = f'<a href="data:file/octet-stream;base64,{b64}" download=\'{os.path.basename(file)}\'>Click to download {os.path.basename(file)}</a>'
100
  return href
101
 
 
102
  def main():
103
  st.sidebar.title('Web Datasets Bulk Downloader')
104
- url_input_method = st.sidebar.radio("Choose URL Input Method", ["Enter URL", "Select from List"])
105
- url = ""
106
- if url_input_method == "Enter URL":
107
- url = st.sidebar.text_input('Please enter a Web URL to bulk download text and files')
108
- else:
109
- selected_site = st.sidebar.selectbox("Select a Website", list(URLS.keys()))
110
- url = URLS[selected_site]
111
 
 
112
  with open("history.json", "r") as f:
113
  history = json.load(f)
114
 
 
115
  if url:
116
  subdir = hashlib.md5(url.encode()).hexdigest()
117
  if not os.path.exists(subdir):
@@ -129,10 +112,11 @@ def main():
129
  for subdir in history.values():
130
  show_download_links(subdir)
131
 
 
132
  with st.expander("URL History and Downloaded Files"):
133
  for url, subdir in history.items():
134
  st.markdown(f"#### {url}")
135
  show_download_links(subdir)
136
 
137
  if __name__ == "__main__":
138
- main()
 
6
  from bs4 import BeautifulSoup
7
  import hashlib
8
  import json
 
9
 
10
  EXCLUDED_FILES = ['app.py', 'requirements.txt', 'pre-requirements.txt', 'packages.txt', 'README.md','.gitattributes', "backup.py","Dockerfile"]
 
 
 
 
 
11
 
12
+ # Create a history.json file if it doesn't exist yet
13
  if not os.path.exists("history.json"):
14
  with open("history.json", "w") as f:
15
  json.dump({}, f)
 
35
  file_url = urllib.parse.urljoin(base_url, link.get('href'))
36
  local_filename = os.path.join(subdir, urllib.parse.urlparse(file_url).path.split('/')[-1])
37
 
38
+ # Skip if the local filename is a directory
39
  if not local_filename.endswith('/') and local_filename != subdir:
40
  link['href'] = local_filename
41
  download_file(file_url, local_filename)
42
 
43
+ # Save the modified HTML content
44
  with open(os.path.join(subdir, "index.html"), "w") as file:
45
  file.write(str(soup))
46
 
 
48
  files = [f for f in os.listdir(directory_path) if os.path.isfile(os.path.join(directory_path, f))]
49
  return [f for f in files if f not in EXCLUDED_FILES]
50
 
51
+
52
  def show_file_operations(file_path):
53
  st.write(f"File: {os.path.basename(file_path)}")
54
 
55
+ # Edit button
56
+ if st.button(f"✏️ Edit {os.path.basename(file_path)}"):
57
+ with open(file_path, "r") as f:
58
+ file_content = f.read()
59
+ file_content = st.text_area("Edit the file content:", value=file_content, height=250)
60
+ if st.button(f"💾 Save {os.path.basename(file_path)}"):
 
 
 
 
 
 
 
 
 
 
 
 
61
  with open(file_path, "w") as f:
62
  f.write(file_content)
63
+ st.success(f"File {os.path.basename(file_path)} saved!")
 
 
 
 
 
64
 
65
+ # Delete button
66
+ if st.button(f"🗑️ Delete {os.path.basename(file_path)}"):
67
+ os.remove(file_path)
68
+ st.markdown(f"🎉 File {os.path.basename(file_path)} deleted!")
69
 
70
  def show_download_links(subdir):
71
  st.write(f'Files for {subdir}:')
 
77
  else:
78
  st.write(f"File not found: {file}")
79
 
80
+
81
  def get_download_link(file):
82
  with open(file, "rb") as f:
83
  bytes = f.read()
 
85
  href = f'<a href="data:file/octet-stream;base64,{b64}" download=\'{os.path.basename(file)}\'>Click to download {os.path.basename(file)}</a>'
86
  return href
87
 
88
+
89
  def main():
90
  st.sidebar.title('Web Datasets Bulk Downloader')
91
+ url = st.sidebar.text_input('Please enter a Web URL to bulk download text and files')
 
 
 
 
 
 
92
 
93
+ # Load history
94
  with open("history.json", "r") as f:
95
  history = json.load(f)
96
 
97
+ # Save the history of URL entered as a json file
98
  if url:
99
  subdir = hashlib.md5(url.encode()).hexdigest()
100
  if not os.path.exists(subdir):
 
112
  for subdir in history.values():
113
  show_download_links(subdir)
114
 
115
+ # Display history as markdown
116
  with st.expander("URL History and Downloaded Files"):
117
  for url, subdir in history.items():
118
  st.markdown(f"#### {url}")
119
  show_download_links(subdir)
120
 
121
  if __name__ == "__main__":
122
+ main()