Skip to content

Commit f257859

Browse files
committed
Add PyData Heidelberg presentation - 2020-01-09
1 parent 3d14565 commit f257859

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+9149
-0
lines changed

Diff for: 2020-01-09-PyData-Heidelberg/.gitignore

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
.DS_Store
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
env/
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*,cover
47+
.hypothesis/
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Django stuff:
54+
*.log
55+
local_settings.py
56+
57+
# Flask stuff:
58+
instance/
59+
.webassets-cache
60+
61+
# Scrapy stuff:
62+
.scrapy
63+
64+
# Sphinx documentation
65+
docs/_build/
66+
67+
# PyBuilder
68+
target/
69+
70+
# IPython Notebook
71+
.ipynb_checkpoints
72+
73+
# pyenv
74+
.python-version
75+
76+
# celery beat schedule file
77+
celerybeat-schedule
78+
79+
# dotenv
80+
.env
81+
82+
# virtualenv
83+
venv/
84+
ENV/
85+
86+
# Spyder project settings
87+
.spyderproject
88+
89+
# Rope project settings
90+
.ropeproject
91+
92+
# Untitled files
93+
[Uu]ntitled*

Diff for: 2020-01-09-PyData-Heidelberg/Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: voila --port=$PORT --no-browser examples/dashboard.ipynb

Diff for: 2020-01-09-PyData-Heidelberg/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# PyData Heidelberg - 2020-01-09
2+
3+
![voila](./img/voila-logo.svg)
4+
5+
## From Jupyter Notebooks to interactive dashboards and web applications
6+
7+
### Setup
8+
9+
```bash
10+
conda env create
11+
conda activate pydata-heidelberg
12+
13+
chmod +x ./postBuild
14+
./postBuild
15+
16+
jupyter lab presentation.ipynb
17+
```

Diff for: 2020-01-09-PyData-Heidelberg/environment.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: pydata-heidelberg
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- bqplot=0.12
6+
- gpxpy=1.3.5
7+
- ipycanvas
8+
- ipyleaflet=0.11
9+
- ipympl
10+
- ipyvuetify=1.1
11+
- jupyterlab-git
12+
- jupyterlab=1
13+
- jupyterlab_heroku
14+
- matplotlib
15+
- notebook>=6
16+
- numpy
17+
- pandas
18+
- python=3.7
19+
- pip
20+
- plotly=4.4
21+
- ptvsd
22+
- seaborn
23+
- srtm.py=0.3.4
24+
- voila=0.1.20
25+
- voila-gridstack=0.0.7
26+
- voila-material=0.2.5
27+
- voila-reveal=0.0.2
28+
- voila-vuetify=0.2.2
29+
- xeus-cling
30+
- xeus-python=0.6
31+
- xtensor=0.21
32+

0 commit comments

Comments
 (0)