Update app.py
Browse files
app.py
CHANGED
|
@@ -32,13 +32,13 @@ headers = {
|
|
| 32 |
# User Input
|
| 33 |
input_url = st.text_input(
|
| 34 |
label="Enter url of page to scrape",
|
| 35 |
-
value="https://
|
| 36 |
key="url",
|
| 37 |
)
|
| 38 |
|
| 39 |
input_question = st.text_input(
|
| 40 |
label="Enter Question",
|
| 41 |
-
value="What is the
|
| 42 |
key="question",
|
| 43 |
)
|
| 44 |
|
|
|
|
| 32 |
# User Input
|
| 33 |
input_url = st.text_input(
|
| 34 |
label="Enter url of page to scrape",
|
| 35 |
+
value="https://finance.yahoo.com/quote/META/",
|
| 36 |
key="url",
|
| 37 |
)
|
| 38 |
|
| 39 |
input_question = st.text_input(
|
| 40 |
label="Enter Question",
|
| 41 |
+
value="What is the market capitalization?",
|
| 42 |
key="question",
|
| 43 |
)
|
| 44 |
|