File size: 1,130 Bytes
209ff0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import streamlit as st
from bs4 import BeautifulSoup
def clean_bookmarks(html_content):
soup = BeautifulSoup(html_content, 'html.parser')
links = soup.find_all('a')
cleaned_html = '<html><body>\n'
for link in links:
href = link.get('href')
anchor_name = link.text.strip()
cleaned_html += f'<a href="{href}">{anchor_name}</a><br>\n'
cleaned_html += '</body></html>'
return cleaned_html
def main():
st.title('Bookmark File Cleaner')
uploaded_file = st.file_uploader('Choose an HTML bookmark file', type=['html'])
if uploaded_file is not None:
html_content = uploaded_file.read().decode('utf-8')
cleaned_html = clean_bookmarks(html_content)
st.subheader('Cleaned Bookmarks')
st.text_area('Output HTML', value=cleaned_html, height=400)
output_file = 'cleaned_bookmarks.html'
with open(output_file, 'w') as f:
f.write(cleaned_html)
st.download_button('Download Cleaned Bookmarks', cleaned_html, file_name=output_file)
if __name__ == '__main__':
main() |