Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,6 @@ 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 |
-
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)
|
@@ -115,6 +114,12 @@ filters.append("and")
|
|
115 |
filters.append(["page_from_language", "=", page_from_language])
|
116 |
filters.append("and")
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
if filters and filters[-1] == "and":
|
119 |
filters.pop()
|
120 |
|
|
|
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)
|
|
|
114 |
filters.append(["page_from_language", "=", page_from_language])
|
115 |
filters.append("and")
|
116 |
|
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 |
|