added files
Browse files- .gitignore +1 -0
- app.py +4 -0
- data_playground.ipynb +20 -0
- requirements.txt +71 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
venv/
|
app.py
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
x = st.slider('Select a value')
|
4 |
+
st.write(x, 'squared is', x * x)
|
data_playground.ipynb
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": null,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [],
|
8 |
+
"source": [
|
9 |
+
"import pandas as pd"
|
10 |
+
]
|
11 |
+
}
|
12 |
+
],
|
13 |
+
"metadata": {
|
14 |
+
"language_info": {
|
15 |
+
"name": "python"
|
16 |
+
}
|
17 |
+
},
|
18 |
+
"nbformat": 4,
|
19 |
+
"nbformat_minor": 2
|
20 |
+
}
|
requirements.txt
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
altair==5.0.1
|
2 |
+
asn1crypto==1.2.0
|
3 |
+
attrs==23.2.0
|
4 |
+
backports.zoneinfo==0.2.1
|
5 |
+
blinker==1.6.3
|
6 |
+
cachetools==5.3.3
|
7 |
+
certifi==2019.9.11
|
8 |
+
cffi==1.13.0
|
9 |
+
chardet==3.0.4
|
10 |
+
Click==7.0
|
11 |
+
conda==4.7.12
|
12 |
+
conda-package-handling==1.6.0
|
13 |
+
cryptography==2.8
|
14 |
+
dash==1.9.1
|
15 |
+
dash-core-components==1.8.1
|
16 |
+
dash-html-components==1.0.2
|
17 |
+
dash-renderer==1.2.4
|
18 |
+
dash-table==4.6.1
|
19 |
+
decorator==5.1.1
|
20 |
+
Flask==1.1.1
|
21 |
+
Flask-Compress==1.4.0
|
22 |
+
future==0.18.2
|
23 |
+
gitdb==4.0.11
|
24 |
+
GitPython==3.1.43
|
25 |
+
idna==2.8
|
26 |
+
importlib-metadata==6.7.0
|
27 |
+
importlib-resources==5.12.0
|
28 |
+
itsdangerous==1.1.0
|
29 |
+
Jinja2==2.11.1
|
30 |
+
jsonschema==4.17.3
|
31 |
+
markdown-it-py==2.2.0
|
32 |
+
MarkupSafe==1.1.1
|
33 |
+
mdurl==0.1.2
|
34 |
+
numpy==1.21.6
|
35 |
+
packaging==23.2
|
36 |
+
pandas==1.3.5
|
37 |
+
Pillow==9.5.0
|
38 |
+
pkgutil-resolve-name==1.3.10
|
39 |
+
plotly==4.5.2
|
40 |
+
protobuf==4.24.4
|
41 |
+
pyarrow==12.0.1
|
42 |
+
pycosat==0.6.3
|
43 |
+
pycparser==2.19
|
44 |
+
pydeck==0.8.1b1
|
45 |
+
pygments==2.17.2
|
46 |
+
Pympler==1.0.1
|
47 |
+
pyOpenSSL==19.0.0
|
48 |
+
pyrsistent==0.19.3
|
49 |
+
PySocks==1.7.1
|
50 |
+
python-dateutil==2.9.0.post0
|
51 |
+
pytz==2024.1
|
52 |
+
pytz-deprecation-shim==0.1.0.post0
|
53 |
+
requests==2.22.0
|
54 |
+
retrying==1.3.3
|
55 |
+
rich==13.7.1
|
56 |
+
ruamel-yaml==0.15.46
|
57 |
+
six==1.12.0
|
58 |
+
smmap==5.0.1
|
59 |
+
streamlit==1.23.1
|
60 |
+
tenacity==8.2.3
|
61 |
+
toml==0.10.2
|
62 |
+
toolz==0.12.1
|
63 |
+
tornado==6.2
|
64 |
+
tqdm==4.36.1
|
65 |
+
typing-extensions==4.7.1
|
66 |
+
tzdata==2024.1
|
67 |
+
tzlocal==4.3.1
|
68 |
+
urllib3==1.24.2
|
69 |
+
validators==0.20.0
|
70 |
+
Werkzeug==1.0.0
|
71 |
+
zipp==3.15.0
|