Spaces:
Runtime error
Runtime error
Update backup.py
Browse files
backup.py
CHANGED
@@ -75,16 +75,15 @@ def file_editor(file_path):
|
|
75 |
|
76 |
|
77 |
def show_file_operations(file_path, sequence_number):
|
78 |
-
st.write(f"File: {os.path.basename(file_path)}")
|
79 |
unique_key = hashlib.md5(file_path.encode()).hexdigest()
|
80 |
-
|
81 |
file_content = ""
|
82 |
|
83 |
col01, col02, col1, col2, col3 = st.columns(5)
|
84 |
with col01:
|
85 |
st.write(os.path.basename(file_path))
|
86 |
-
|
87 |
-
st.write(file_path)
|
88 |
with col1:
|
89 |
edit_key = f"edit_{unique_key}_{sequence_number}"
|
90 |
if st.button(f"✏️ Edit", key=edit_key):
|
@@ -130,8 +129,9 @@ def get_download_link(file):
|
|
130 |
with open(file, "rb") as f:
|
131 |
bytes = f.read()
|
132 |
b64 = base64.b64encode(bytes).decode()
|
133 |
-
href = f'<a href="data:file/octet-stream;base64,{b64}" download=\'{os.path.basename(file)}\'>
|
134 |
return href
|
|
|
135 |
def main():
|
136 |
st.sidebar.title('Web Datasets Bulk Downloader')
|
137 |
|
@@ -185,5 +185,8 @@ def main():
|
|
185 |
st.markdown(f"#### {url}")
|
186 |
show_download_links(subdir)
|
187 |
|
|
|
|
|
|
|
188 |
if __name__ == "__main__":
|
189 |
-
main()
|
|
|
75 |
|
76 |
|
77 |
def show_file_operations(file_path, sequence_number):
|
78 |
+
#st.write(f"File: {os.path.basename(file_path)}")
|
79 |
unique_key = hashlib.md5(file_path.encode()).hexdigest()
|
|
|
80 |
file_content = ""
|
81 |
|
82 |
col01, col02, col1, col2, col3 = st.columns(5)
|
83 |
with col01:
|
84 |
st.write(os.path.basename(file_path))
|
85 |
+
#with col02:
|
86 |
+
#st.write(file_path)
|
87 |
with col1:
|
88 |
edit_key = f"edit_{unique_key}_{sequence_number}"
|
89 |
if st.button(f"✏️ Edit", key=edit_key):
|
|
|
129 |
with open(file, "rb") as f:
|
130 |
bytes = f.read()
|
131 |
b64 = base64.b64encode(bytes).decode()
|
132 |
+
href = f'<a href="data:file/octet-stream;base64,{b64}" download=\'{os.path.basename(file)}\'>Download: {os.path.basename(file)}</a>'
|
133 |
return href
|
134 |
+
|
135 |
def main():
|
136 |
st.sidebar.title('Web Datasets Bulk Downloader')
|
137 |
|
|
|
185 |
st.markdown(f"#### {url}")
|
186 |
show_download_links(subdir)
|
187 |
|
188 |
+
# Update each time to show files we have
|
189 |
+
for subdir in history.values():
|
190 |
+
show_download_links(subdir)
|
191 |
if __name__ == "__main__":
|
192 |
+
main()
|