Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,41 @@ def load_qa_model():
|
|
25 |
# 4. Use streamlit to create a web app
|
26 |
def main():
|
27 |
|
28 |
-
#crear_indice()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
st.set_page_config(page_title="Buscador de noticias periodicos dominicanos", page_icon="📰")
|
31 |
st.header('El Repartidor Dominicano')
|
|
|
25 |
# 4. Use streamlit to create a web app
|
26 |
def main():
|
27 |
|
28 |
+
#crear_indice()
|
29 |
+
|
30 |
+
with st.expander("About the #30DaysOfStreamlit"):
|
31 |
+
st.markdown(
|
32 |
+
"""
|
33 |
+
The **#30DaysOfStreamlit** is a coding challenge designed to help you get started in building Streamlit apps.
|
34 |
+
|
35 |
+
Particularly, you'll be able to:
|
36 |
+
- Set up a coding environment for building Streamlit apps
|
37 |
+
- Build your first Streamlit app
|
38 |
+
- Learn about all the awesome input/output widgets to use for your Streamlit app
|
39 |
+
"""
|
40 |
+
)
|
41 |
+
|
42 |
+
# Sidebar
|
43 |
+
st.sidebar.header("About")
|
44 |
+
st.sidebar.markdown(
|
45 |
+
"[Streamlit](https://streamlit.io) is a Python library that allows the creation of interactive, data-driven web applications in Python."
|
46 |
+
)
|
47 |
+
|
48 |
+
st.sidebar.header("Resources")
|
49 |
+
st.sidebar.markdown(
|
50 |
+
"""
|
51 |
+
- [Streamlit Documentation](https://docs.streamlit.io/)
|
52 |
+
- [Cheat sheet](https://docs.streamlit.io/library/cheatsheet)
|
53 |
+
- [Book](https://www.amazon.com/dp/180056550X) (Getting Started with Streamlit for Data Science)
|
54 |
+
- [Blog](https://blog.streamlit.io/how-to-master-streamlit-for-data-science/) (How to master Streamlit for data science)
|
55 |
+
"""
|
56 |
+
)
|
57 |
+
|
58 |
+
st.sidebar.header("Deploy")
|
59 |
+
st.sidebar.markdown(
|
60 |
+
"You can quickly deploy Streamlit apps using [Streamlit Community Cloud](https://streamlit.io/cloud) in just a few clicks."
|
61 |
+
)
|
62 |
+
|
63 |
|
64 |
st.set_page_config(page_title="Buscador de noticias periodicos dominicanos", page_icon="📰")
|
65 |
st.header('El Repartidor Dominicano')
|