sk1401700 commited on
Commit
b221c36
·
verified ·
1 Parent(s): 7a7f0bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,6 +26,6 @@ if st.button("Scrape Website"):
26
  with st.spinner("Scraping..."):
27
  result = scrape_website(api_key, url, format_option)
28
  st.subheader("Scraped Content:")
29
- st.text_area("Response:", result, height=300)
30
  else:
31
  st.error("Please enter both API key and URL!")
 
26
  with st.spinner("Scraping..."):
27
  result = scrape_website(api_key, url, format_option)
28
  st.subheader("Scraped Content:")
29
+ st.text_area("Response:", str(result), height=300)
30
  else:
31
  st.error("Please enter both API key and URL!")