Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ api_login = st.sidebar.text_input("API Login", value="[email protected]
|
|
62 |
api_key = st.sidebar.text_input("API Key", type="password")
|
63 |
|
64 |
st.sidebar.title("Filters")
|
65 |
-
st.sidebar.info("A maximum of 8 filters are allowed through the API. That includes one for every comma-separated value below, one for every value not equal to 0 in the boxes, one for language, and one for each button ticked.")
|
66 |
url_from_not_contain = st.sidebar.text_input("URL from does not contain (comma-separated)", value="keyword,blogspot,/search,/tag")
|
67 |
backlink_spam_score = st.sidebar.number_input("Backlink Spam Score ≤", value=20)
|
68 |
page_from_rank_value = st.sidebar.number_input("Page From Rank Value ≥", value=0)
|
@@ -112,7 +112,7 @@ if filters and filters[-1] == "and":
|
|
112 |
filters.pop()
|
113 |
|
114 |
num_concurrent_calls = st.sidebar.number_input("Concurrent Calls:", min_value=1, max_value=10, value=5, step=1)
|
115 |
-
data_section = st.sidebar.text_area("Paste
|
116 |
paste_data = st.sidebar.button("Paste Data")
|
117 |
add_row = st.sidebar.button("Add Row")
|
118 |
reset = st.sidebar.button("Reset")
|
|
|
62 |
api_key = st.sidebar.text_input("API Key", type="password")
|
63 |
|
64 |
st.sidebar.title("Filters")
|
65 |
+
st.sidebar.info("A maximum of 8 filters are allowed through the API. That includes one for every comma-separated value below, one for every value not equal to 0 in the boxes, one for language, and one for each button ticked. If you try to add more, it will fail.")
|
66 |
url_from_not_contain = st.sidebar.text_input("URL from does not contain (comma-separated)", value="keyword,blogspot,/search,/tag")
|
67 |
backlink_spam_score = st.sidebar.number_input("Backlink Spam Score ≤", value=20)
|
68 |
page_from_rank_value = st.sidebar.number_input("Page From Rank Value ≥", value=0)
|
|
|
112 |
filters.pop()
|
113 |
|
114 |
num_concurrent_calls = st.sidebar.number_input("Concurrent Calls:", min_value=1, max_value=10, value=5, step=1)
|
115 |
+
data_section = st.sidebar.text_area("Paste List of URLs:")
|
116 |
paste_data = st.sidebar.button("Paste Data")
|
117 |
add_row = st.sidebar.button("Add Row")
|
118 |
reset = st.sidebar.button("Reset")
|