Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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!")
|