blazingbunny
commited on
Commit
•
284c1ee
1
Parent(s):
0bc9d2e
Update app.py
Browse files
app.py
CHANGED
@@ -6,12 +6,22 @@ import matplotlib.pyplot as plt
|
|
6 |
# List of common words to filter
|
7 |
common_words = set(["author", "category", "product", "authors", "categories", "products", "blog", "blogs"])
|
8 |
|
9 |
-
# Sidebar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
sitemap_urls = [
|
11 |
-
st.sidebar.text_input("
|
12 |
-
st.sidebar.text_input("Enter the sitemap URL
|
13 |
-
st.sidebar.text_input("Enter the sitemap URL
|
14 |
-
st.sidebar.text_input("Enter the sitemap URL
|
15 |
]
|
16 |
|
17 |
for idx, sitemap_url in enumerate(sitemap_urls):
|
|
|
6 |
# List of common words to filter
|
7 |
common_words = set(["author", "category", "product", "authors", "categories", "products", "blog", "blogs"])
|
8 |
|
9 |
+
# Sidebar instructions
|
10 |
+
st.sidebar.markdown("### How to use this Sitemap Analyzer")
|
11 |
+
st.sidebar.markdown("""
|
12 |
+
This sitemap analyzer shows you how many pages each domain has published over a period of time.
|
13 |
+
To use it, input the client's sitemap on "Input client sitemap here" and put up to 3 competitor sitemaps below it, pressing enter after every time you put the sitemap URL.
|
14 |
+
""")
|
15 |
+
st.sidebar.markdown("You can use this tool to detect or guess where the sitemap of each domain can be: [Free Sitemap Finder & Checker Tool](https://seomator.com/sitemap-finder)")
|
16 |
+
|
17 |
+
st.sidebar.markdown("## Tool uploaded and maintained by: [Blazing SEO](http://blazing-seo.com/)")
|
18 |
+
|
19 |
+
# Sidebar inputs for up to 4 sitemaps
|
20 |
sitemap_urls = [
|
21 |
+
st.sidebar.text_input("Input client sitemap here:", ""),
|
22 |
+
st.sidebar.text_input("Enter the competitor sitemap URL 1:", ""),
|
23 |
+
st.sidebar.text_input("Enter the competitor sitemap URL 2:", ""),
|
24 |
+
st.sidebar.text_input("Enter the competitor sitemap URL 3:", "")
|
25 |
]
|
26 |
|
27 |
for idx, sitemap_url in enumerate(sitemap_urls):
|