streamlit-launcher 2.2.1__tar.gz → 2.2.7__tar.gz

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.
Files changed (17) hide show
  1. {streamlit_launcher-2.2.1/streamlit_launcher.egg-info → streamlit_launcher-2.2.7}/PKG-INFO +2 -1
  2. streamlit_launcher-2.2.7/license.txt +18 -0
  3. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/setup.py +1 -1
  4. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher/dashboard.py +24 -0
  5. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7/streamlit_launcher.egg-info}/PKG-INFO +2 -1
  6. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher.egg-info/SOURCES.txt +1 -1
  7. streamlit_launcher-2.2.1/streamlit_launcher/mas.py +0 -1938
  8. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/LICENSE +0 -0
  9. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/README.md +0 -0
  10. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/setup.cfg +0 -0
  11. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher/__init__.py +0 -0
  12. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher/cli.py +0 -0
  13. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher/gui.py +0 -0
  14. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher.egg-info/dependency_links.txt +0 -0
  15. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher.egg-info/entry_points.txt +0 -0
  16. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher.egg-info/requires.txt +0 -0
  17. {streamlit_launcher-2.2.1 → streamlit_launcher-2.2.7}/streamlit_launcher.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: streamlit_launcher
3
- Version: 2.2.1
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,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
@@ -8,7 +8,7 @@ with open(os.path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
8
8
 
9
9
  setup(
10
10
  name="streamlit_launcher",
11
- version="2.2.1",
11
+ version="2.2.7",
12
12
  author="Dwi Bakti N Dev",
13
13
  author_email="dwibakti76@gmail.com",
14
14
  description="Analisis Date Scient Simple and Instant",
@@ -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.1
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
@@ -1,11 +1,11 @@
1
1
  LICENSE
2
2
  README.md
3
+ license.txt
3
4
  setup.py
4
5
  streamlit_launcher/__init__.py
5
6
  streamlit_launcher/cli.py
6
7
  streamlit_launcher/dashboard.py
7
8
  streamlit_launcher/gui.py
8
- streamlit_launcher/mas.py
9
9
  streamlit_launcher.egg-info/PKG-INFO
10
10
  streamlit_launcher.egg-info/SOURCES.txt
11
11
  streamlit_launcher.egg-info/dependency_links.txt