Niharmahesh commited on
Commit
1ab8f6b
·
verified ·
1 Parent(s): ef07222

Delete test.py

Browse files
Files changed (1) hide show
  1. test.py +0 -26
test.py DELETED
@@ -1,26 +0,0 @@
1
- import streamlit as st
2
-
3
- # Assuming 'data' and 'url' need to be defined for this context
4
- data = "Example data here" # Placeholder for actual data
5
- url = "https://example.com" # Placeholder URL
6
-
7
- st.button("Click me")
8
- st.download_button("Download file", data)
9
- st.link_button("Go to gallery", url)
10
- st.page_link("app.py", label="Home")
11
- st.data_editor("Edit data", data)
12
- st.checkbox("I agree")
13
- st.toggle("Enable")
14
- st.radio("Pick one", ["cats", "dogs"])
15
- st.selectbox("Pick one", ["cats", "dogs"])
16
- st.multiselect("Buy", ["milk", "apples", "potatoes"])
17
- st.slider("Pick a number", 0, 100)
18
- st.select_slider("Pick a size", ["S", "M", "L"])
19
- st.text_input("First name")
20
- st.number_input("Pick a number", 0, 10)
21
- st.text_area("Text to translate")
22
- st.date_input("Your birthday")
23
- st.time_input("Meeting time")
24
- st.file_uploader("Upload a CSV")
25
- st.camera_input("Take a picture")
26
- st.color_picker("Pick a color")