summarizer / pages /url.py
saketh092's picture
Upload 11 files
4ea8f5c verified
raw
history blame
235 Bytes
import streamlit as st
import load
import website_data
url=st.text_input("Enter the url",placeholder="URL....")
if url:
response=(load.output(website_data.scrape(url)))
for chunk in response:
st.write(chunk.text)