streamlit-launcher 2.2.1__py3-none-any.whl → 2.2.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamlit_launcher/dashboard.py +24 -0
- {streamlit_launcher-2.2.1.dist-info → streamlit_launcher-2.2.7.dist-info}/METADATA +2 -1
- streamlit_launcher-2.2.7.dist-info/RECORD +11 -0
- streamlit_launcher-2.2.7.dist-info/licenses/license.txt +18 -0
- streamlit_launcher/mas.py +0 -1938
- streamlit_launcher-2.2.1.dist-info/RECORD +0 -11
- {streamlit_launcher-2.2.1.dist-info → streamlit_launcher-2.2.7.dist-info}/WHEEL +0 -0
- {streamlit_launcher-2.2.1.dist-info → streamlit_launcher-2.2.7.dist-info}/entry_points.txt +0 -0
- {streamlit_launcher-2.2.1.dist-info → streamlit_launcher-2.2.7.dist-info}/licenses/LICENSE +0 -0
- {streamlit_launcher-2.2.1.dist-info → streamlit_launcher-2.2.7.dist-info}/top_level.txt +0 -0
streamlit_launcher/dashboard.py
CHANGED
@@ -34,6 +34,7 @@ from sklearn.preprocessing import StandardScaler, LabelEncoder
|
|
34
34
|
from sklearn.metrics import mean_squared_error, r2_score, accuracy_score, classification_report, confusion_matrix
|
35
35
|
from sklearn.inspection import permutation_importance
|
36
36
|
from scipy.stats import gaussian_kde
|
37
|
+
import streamlit.components.v1 as components
|
37
38
|
|
38
39
|
# Konfigurasi untuk performa
|
39
40
|
plt.style.use('default')
|
@@ -7958,6 +7959,29 @@ uploaded_files = st.sidebar.file_uploader(
|
|
7958
7959
|
accept_multiple_files=True
|
7959
7960
|
)
|
7960
7961
|
|
7962
|
+
# Pilihan website
|
7963
|
+
website_option = st.sidebar.selectbox(
|
7964
|
+
"Pilih Website:",
|
7965
|
+
["https://streamlit-launcher.vercel.app/", "Custom URL"]
|
7966
|
+
)
|
7967
|
+
|
7968
|
+
if website_option == "Custom URL":
|
7969
|
+
custom_url = st.sidebar.text_input("Masukkan URL custom:")
|
7970
|
+
if custom_url:
|
7971
|
+
website_url = custom_url
|
7972
|
+
else:
|
7973
|
+
website_url = "https://streamlit-launcher.vercel.app/"
|
7974
|
+
else:
|
7975
|
+
website_url = website_option
|
7976
|
+
|
7977
|
+
# Tampilkan iframe
|
7978
|
+
if st.sidebar.button("🌐 Tampilkan Website"):
|
7979
|
+
st.markdown(f"""
|
7980
|
+
<div style="border: 2px solid #e0e0e0; border-radius: 10px; padding: 10px; margin: 10px 0;">
|
7981
|
+
<iframe src="{website_url}" width="100%" height="600" style="border: none; border-radius: 8px;"></iframe>
|
7982
|
+
</div>
|
7983
|
+
""", unsafe_allow_html=True)
|
7984
|
+
|
7961
7985
|
merge_method = "concat"
|
7962
7986
|
if uploaded_files and len(uploaded_files) > 1:
|
7963
7987
|
merge_method = st.sidebar.selectbox(
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: streamlit_launcher
|
3
|
-
Version: 2.2.
|
3
|
+
Version: 2.2.7
|
4
4
|
Summary: Analisis Date Scient Simple and Instant
|
5
5
|
Home-page: https://github.com/royhtml
|
6
6
|
Author: Dwi Bakti N Dev
|
@@ -15,6 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
15
15
|
Requires-Python: >=3.6
|
16
16
|
Description-Content-Type: text/markdown
|
17
17
|
License-File: LICENSE
|
18
|
+
License-File: license.txt
|
18
19
|
Requires-Dist: pillow>=8.0
|
19
20
|
Requires-Dist: pyinstaller>=4.0
|
20
21
|
Requires-Dist: pyqt5>=5.15
|
@@ -0,0 +1,11 @@
|
|
1
|
+
streamlit_launcher/__init__.py,sha256=k3BZ7tJdynU9jlnAYAscaKaFOzO3GCKt_IPCWCdrb-w,41
|
2
|
+
streamlit_launcher/cli.py,sha256=YtU1nCFWcL32X9kjceQJ8e_xQhPckDL0qS_wXW4a2tU,125
|
3
|
+
streamlit_launcher/dashboard.py,sha256=ovK1KG8UJ1U1c_pujl6sCJGVrltg_Xj8grMGuPQoi48,507369
|
4
|
+
streamlit_launcher/gui.py,sha256=0Z6sLGJF_TG5UXn7lICB38SofR-tQyj_xfewPAr7yWw,13982
|
5
|
+
streamlit_launcher-2.2.7.dist-info/licenses/LICENSE,sha256=31GC5SOIiwWtwgkyA0U7_x9WZ5liBpQG1AbFyL07bR4,1214
|
6
|
+
streamlit_launcher-2.2.7.dist-info/licenses/license.txt,sha256=bfaY7gg2kfZKvP_V5zRP81JW4oiyInt500-ZIHHgy1k,830
|
7
|
+
streamlit_launcher-2.2.7.dist-info/METADATA,sha256=myp4SQ8KYy7g-HHJp-AbzAuL-dS6MVtSlnMkka7yWxM,8700
|
8
|
+
streamlit_launcher-2.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
9
|
+
streamlit_launcher-2.2.7.dist-info/entry_points.txt,sha256=wgNka2kbwtdHIg-VqWEHEWd_oQVyJXDAV2gsyH_IYr8,63
|
10
|
+
streamlit_launcher-2.2.7.dist-info/top_level.txt,sha256=6mRyTnnGGC0GYRFtdiyfUhgfhEJyK3ma__Z7vkv_W-k,19
|
11
|
+
streamlit_launcher-2.2.7.dist-info/RECORD,,
|
@@ -0,0 +1,18 @@
|
|
1
|
+
📜 STRICT PROPRIETARY SOFTWARE LICENSE — ALL RIGHTS RESERVED
|
2
|
+
Hak Cipta © 2025 Dwi Bakti N Dev. Seluruh hak dilindungi undang-undang.
|
3
|
+
|
4
|
+
🔒 Definisi
|
5
|
+
- Pemilik: Dwi Bakti N Dev, pemilik semua hak atas Perangkat Lunak
|
6
|
+
- Perangkat Lunak: Seluruh kode sumber, dokumentasi, dan materi terkait
|
7
|
+
- Pengguna: Pihak yang mendapatkan salinan Perangkat Lunak
|
8
|
+
|
9
|
+
⚠️ Pembatasan Ketat
|
10
|
+
❌ DILARANG menyalin, mereproduksi, atau membuat karya turunan
|
11
|
+
❌ DILARANG menyebarluaskan atau menjual Perangkat Lunak
|
12
|
+
❌ DILARANG menggunakan untuk layanan komersial pihak ketiga
|
13
|
+
❌ DILARANG reverse engineering atau dekompilasi
|
14
|
+
|
15
|
+
📞 Kontak Lisensi
|
16
|
+
Nama: Dwi Bakti N Dev
|
17
|
+
Website: https://portofolio-dwi-bakti-n-dev-liard.vercel.app
|
18
|
+
Tanggal Efektif: 14/10/2025
|