WebDatasets / backup.py
awacke1's picture
Create backup.py
c227f8b
raw
history blame
No virus
2.18 kB
import streamlit as st
import requests
from bs4 import BeautifulSoup
import os
import urllib
import base64
def download_file(url, local_filename):
if url.startswith('http://') or url.startswith('https://'): # add this line
try:
with requests.get(url, stream=True) as r:
r.raise_for_status()
with open(local_filename, 'wb') as f:
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)
return local_filename
except requests.exceptions.HTTPError as err:
print(f"HTTP error occurred: {err}") # or use logging
def download_html_and_files(url):
html_content = requests.get(url).text
soup = BeautifulSoup(html_content, 'html.parser')
base_url = urllib.parse.urlunparse(urllib.parse.urlparse(url)._replace(path='', params='', query='', fragment=''))
for link in soup.find_all('a'):
file_url = urllib.parse.urljoin(base_url, link.get('href'))
local_filename = urllib.parse.urlparse(file_url).path.split('/')[-1]
if local_filename: # add this line
link['href'] = local_filename
download_file(file_url, local_filename)
with open("index.html", "w") as file:
file.write(str(soup))
def list_files(directory_path='.'):
return [f for f in os.listdir(directory_path) if os.path.isfile(os.path.join(directory_path, f))]
def main():
st.sidebar.title('Bulk Download Tool')
url = st.sidebar.text_input('Please enter a URL to bulk download text and files')
if st.sidebar.button('📥 Get All the Content'):
download_html_and_files(url)
st.sidebar.write('Download complete. Here are the files you can download:')
for file in list_files():
st.sidebar.markdown(get_download_link(file), unsafe_allow_html=True)
def get_download_link(file):
with open(file, "rb") as f:
bytes = f.read()
b64 = base64.b64encode(bytes).decode()
href = f'<a href="data:file/octet-stream;base64,{b64}" download=\'{file}\'>Click to download {file}</a>'
return href
if __name__ == "__main__":
main()