You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,8 +97,7 @@ if archived_tweets:
97
97
98
98
A prototype written in Python with the Streamlit framework and hosted on Streamlit Cloud.
99
99
100
-
> [!NOTE]
101
-
> Starting from version 1.0, the web app will not receive all updates from the official package. To access all features, prefer the package via PyPI.
100
+
Important: Starting from version 1.0, the web app will no longer receive all updates from the official package. To access all features, prefer using the package from PyPI.
"[](https://github.com/claromes/waybacktweets/releases)"# noqa: E501
172
-
)
173
-
st.write(
174
-
"Retrieves archived tweets CDX data in HTML (for easy viewing of the tweets), CSV, and JSON formats."# noqa: E501
175
-
)
177
+
# ------ UI Settings ------ #
176
178
179
+
st.image(TITLE, use_container_width="never")
177
180
st.write(
178
-
"For better performance, use the CLI version, available on [PyPI](https://pypi.org/project/waybacktweets)."# noqa: E501
181
+
"Retrieves archived tweets CDX data in HTML, CSV, and JSON formats."# noqa: E501
179
182
)
180
183
181
184
st.write(
182
-
"To access the legacy version of Wayback Tweets, [click here](https://waybacktweets-legacy.streamlit.app)."# noqa: E501
185
+
"This application is a prototype based on the Python package and does not include all available features. To explore the package, including CLI and Module usage, visit the [GitHub repository](https://github.com/claromes/waybacktweets)."# noqa: E501
help="Query result limits. A maximum of 500 tweets per search to enhance the tool's performance", # noqa: E501
207
-
)
208
-
209
-
withcol2:
210
-
offset=st.text_input(
211
-
"Offset",
212
-
key="offset",
213
-
help="Enables efficient pagination. For instance, after retrieving an initial batch of 500 tweets, setting an offset of 500 fetches the next batch from 501 to 1000", # noqa: E501
help="Using the `from` and `to` filters. Format: YYYY/MM/DD",
223
-
)
211
+
limit=st.text_input(
212
+
"Limit",
213
+
key="limit",
214
+
help="Query result limits",
215
+
)
224
216
225
-
unique=st.checkbox(
226
-
"Only unique Wayback Machine URLs",
227
-
key="unique",
228
-
help="Filtering by the collapse option using the `urlkey` field and the URL Match Scope `prefix`", # noqa: E501
229
-
)
230
-
st.caption(
231
-
":orange[note: according to the official documentation of the Wayback CDX Server API, the query to retrieve unique URLs may be slow at the moment.]"# noqa: E501
232
-
)
217
+
unique=st.checkbox(
218
+
"Only unique Wayback Machine URLs",
219
+
key="unique",
220
+
help="Filtering by the collapse option using the `urlkey` field and the URL Match Scope `prefix`", # noqa: E501
221
+
)
222
+
st.caption(
223
+
":gray[Note: As noted in the official Wayback CDX Server API documentation, retrieving unique URLs may experience slow performance at this time.]"# noqa: E501
0 commit comments