Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -128,17 +128,24 @@ if 'success' not in st.session_state:
|
|
| 128 |
|
| 129 |
if selected_app == "1) Scrape PDFs":
|
| 130 |
st.write("1. Go to your organizations webpage")
|
|
|
|
|
|
|
| 131 |
st.divider()
|
| 132 |
|
| 133 |
-
st.write("2. Choose an section in the webpage
|
| 134 |
-
|
| 135 |
-
image =
|
| 136 |
-
st.image(image, use_column_width=True)
|
| 137 |
-
|
| 138 |
st.divider()
|
| 139 |
|
| 140 |
-
st.
|
|
|
|
|
|
|
|
|
|
| 141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
|
| 143 |
if selected_app == "2) Create CSVs":
|
| 144 |
if st.session_state.error != "":
|
|
|
|
| 128 |
|
| 129 |
if selected_app == "1) Scrape PDFs":
|
| 130 |
st.write("1. Go to your organizations webpage")
|
| 131 |
+
image = Image.open('Example1.png')
|
| 132 |
+
st.image(image, caption="Example for Step 1",use_column_width=True)
|
| 133 |
st.divider()
|
| 134 |
|
| 135 |
+
st.write("2. Choose an section in the webpage")
|
| 136 |
+
image = Image.open('Example2.png')
|
| 137 |
+
st.image(image, caption="Example for Step 2",use_column_width=True)
|
|
|
|
|
|
|
| 138 |
st.divider()
|
| 139 |
|
| 140 |
+
# st.write("3. Copy all text on the page")
|
| 141 |
+
# image = Image.open('Example3.png')
|
| 142 |
+
# st.image(image, caption="Example for Step 3",use_column_width=True)
|
| 143 |
+
# st.divider()
|
| 144 |
|
| 145 |
+
# st.write("4. Open a new google doc")
|
| 146 |
+
# image = Image.open('Example4.png')
|
| 147 |
+
# st.image(image, caption="Example for Step 4",use_column_width=True)
|
| 148 |
+
# st.divider()
|
| 149 |
|
| 150 |
if selected_app == "2) Create CSVs":
|
| 151 |
if st.session_state.error != "":
|