Spaces:
Sleeping
Sleeping
Update presidio_streamlit.py
Browse files- presidio_streamlit.py +13 -13
presidio_streamlit.py
CHANGED
|
@@ -19,19 +19,6 @@ from presidio_helpers import (
|
|
| 19 |
|
| 20 |
st.set_page_config(page_title="Presidio demo", layout="wide")
|
| 21 |
|
| 22 |
-
components.html(
|
| 23 |
-
"""
|
| 24 |
-
<script type="text/javascript">
|
| 25 |
-
(function(c,l,a,r,i,t,y){
|
| 26 |
-
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
|
| 27 |
-
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
|
| 28 |
-
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
|
| 29 |
-
})(window, document, "clarity", "script", "h7f8bp42n8");
|
| 30 |
-
</script>
|
| 31 |
-
"""
|
| 32 |
-
)
|
| 33 |
-
|
| 34 |
-
|
| 35 |
# Sidebar
|
| 36 |
st.sidebar.header(
|
| 37 |
"""
|
|
@@ -233,3 +220,16 @@ if st_analyze_results:
|
|
| 233 |
st.dataframe(df_subset.reset_index(drop=True), use_container_width=True)
|
| 234 |
else:
|
| 235 |
st.text("No findings")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
st.set_page_config(page_title="Presidio demo", layout="wide")
|
| 21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
# Sidebar
|
| 23 |
st.sidebar.header(
|
| 24 |
"""
|
|
|
|
| 220 |
st.dataframe(df_subset.reset_index(drop=True), use_container_width=True)
|
| 221 |
else:
|
| 222 |
st.text("No findings")
|
| 223 |
+
|
| 224 |
+
|
| 225 |
+
components.html(
|
| 226 |
+
"""
|
| 227 |
+
<script type="text/javascript">
|
| 228 |
+
(function(c,l,a,r,i,t,y){
|
| 229 |
+
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
|
| 230 |
+
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
|
| 231 |
+
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
|
| 232 |
+
})(window, document, "clarity", "script", "h7f8bp42n8");
|
| 233 |
+
</script>
|
| 234 |
+
"""
|
| 235 |
+
)
|