Spaces:
Sleeping
Sleeping
Commit ·
397f5e9
1
Parent(s): cb7c335
Upload 2 files
Browse files- requirements.txt +11 -0
- st.py +20 -0
requirements.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit~=1.23.1
|
| 2 |
+
pandas~=1.3.5
|
| 3 |
+
numpy~=1.21.6
|
| 4 |
+
pivottablejs~=0.9.0
|
| 5 |
+
scipy~=1.7.3
|
| 6 |
+
scikit-learn~=1.0.2
|
| 7 |
+
Pillow~=9.5.0
|
| 8 |
+
pandas-profiling~=3.6.6
|
| 9 |
+
ydata-profiling~=4.6.2
|
| 10 |
+
streamlit-pandas-profiling~=0.1.3
|
| 11 |
+
ipython~=8.18.0
|
st.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import streamlit.components.v1 as components
|
| 3 |
+
st.title("My Streamlit App")
|
| 4 |
+
ad_code=""" <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5056338602918094"
|
| 5 |
+
crossorigin="anonymous"></script>
|
| 6 |
+
<!-- ad2 -->
|
| 7 |
+
<ins class="adsbygoogle"
|
| 8 |
+
style="display:block"
|
| 9 |
+
data-ad-client="ca-pub-5056338602918094"
|
| 10 |
+
data-ad-slot="4692551330"
|
| 11 |
+
data-ad-format="auto"
|
| 12 |
+
data-full-width-responsive="true"></ins>
|
| 13 |
+
<script>
|
| 14 |
+
(adsbygoogle = window.adsbygoogle || []).push({});
|
| 15 |
+
</script>
|
| 16 |
+
"""
|
| 17 |
+
components.html(ad_code)
|
| 18 |
+
st.write("Hello world")
|
| 19 |
+
# st.write(<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5056338602918094" crossorigin="anonymous"></script>,)
|
| 20 |
+
st.write("over end")
|