Commit ·
5e3abbb
1
Parent(s): f8bfbd9
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,12 +25,13 @@ st.subheader("Upload a crawl file to find semantically relevant pages to interli
|
|
| 25 |
# Sidebar instructions
|
| 26 |
st.sidebar.markdown("### BERT Semantic Interlinking App")
|
| 27 |
st.sidebar.markdown("""
|
| 28 |
-
This tool helps you plot connections to
|
| 29 |
-
To use it, Upload your Screaming Frog export file "internal_html.csv". After creating
|
| 30 |
""")
|
| 31 |
|
| 32 |
st.sidebar.markdown("## Tool uploaded and maintained by: [Blazing SEO](http://blazing-seo.com/)")
|
| 33 |
-
|
|
|
|
| 34 |
@st.cache_data
|
| 35 |
def fetch_data():
|
| 36 |
# Code to fetch data
|
|
@@ -364,5 +365,4 @@ st.write("Fetched Data:", data)
|
|
| 364 |
if st.button('Clear Cache'):
|
| 365 |
st.caching.clear_cache()
|
| 366 |
st.write('Cache cleared!')
|
| 367 |
-
|
| 368 |
-
st.sidebar.markdown("[@LeeFootSEO](https://twitter.com/LeeFootSEO)")
|
|
|
|
| 25 |
# Sidebar instructions
|
| 26 |
st.sidebar.markdown("### BERT Semantic Interlinking App")
|
| 27 |
st.sidebar.markdown("""
|
| 28 |
+
This tool helps you plot connections to internal pages based on your page's data structure tags like: **Title** and **H1**.
|
| 29 |
+
To use it, Upload your Screaming Frog export file "internal_html.csv". After creating a linking chart, you can download the .XLSX file by clicking button "Download BERT Interlinking Opportunities"
|
| 30 |
""")
|
| 31 |
|
| 32 |
st.sidebar.markdown("## Tool uploaded and maintained by: [Blazing SEO](http://blazing-seo.com/)")
|
| 33 |
+
st.sidebar.markdown("Credits")
|
| 34 |
+
st.sidebar.markdown("[@LeeFootSEO](https://twitter.com/LeeFootSEO)")
|
| 35 |
@st.cache_data
|
| 36 |
def fetch_data():
|
| 37 |
# Code to fetch data
|
|
|
|
| 365 |
if st.button('Clear Cache'):
|
| 366 |
st.caching.clear_cache()
|
| 367 |
st.write('Cache cleared!')
|
| 368 |
+
|
|
|