Update app.py
Browse files
app.py
CHANGED
@@ -76,6 +76,7 @@ st.sidebar.title("Filters")
|
|
76 |
url_from_not_contain = st.sidebar.text_input("URL from does not contain (comma-separated)")
|
77 |
backlink_spam_score = st.sidebar.number_input("Backlink Spam Score ≤", value=20)
|
78 |
page_from_rank_value = st.sidebar.number_input("Page From Rank Value ≥", value=0)
|
|
|
79 |
page_from_language = st.sidebar.selectbox("Page From Language", ['en', 'other'])
|
80 |
is_lost = st.sidebar.checkbox("Is Lost", value=False)
|
81 |
dofollow = st.sidebar.checkbox("Dofollow", value=False)
|
@@ -117,9 +118,6 @@ filters.append("and")
|
|
117 |
filters.append(["anchor", "not_like", ""])
|
118 |
filters.append("and")
|
119 |
|
120 |
-
filters.append(["domain_from_rank", ">=", 100])
|
121 |
-
filters.append("and")
|
122 |
-
|
123 |
if filters and filters[-1] == "and":
|
124 |
filters.pop()
|
125 |
|
|
|
76 |
url_from_not_contain = st.sidebar.text_input("URL from does not contain (comma-separated)")
|
77 |
backlink_spam_score = st.sidebar.number_input("Backlink Spam Score ≤", value=20)
|
78 |
page_from_rank_value = st.sidebar.number_input("Page From Rank Value ≥", value=0)
|
79 |
+
domain_from_rank_value = st.sidebar.number_input("Domain From Rank Value ≥", value=0)
|
80 |
page_from_language = st.sidebar.selectbox("Page From Language", ['en', 'other'])
|
81 |
is_lost = st.sidebar.checkbox("Is Lost", value=False)
|
82 |
dofollow = st.sidebar.checkbox("Dofollow", value=False)
|
|
|
118 |
filters.append(["anchor", "not_like", ""])
|
119 |
filters.append("and")
|
120 |
|
|
|
|
|
|
|
121 |
if filters and filters[-1] == "and":
|
122 |
filters.pop()
|
123 |
|