Skip to content

Commit b97f868

Browse files
committed
🔧 Moving the Data Science content into Python4DataScience
* /first-steps/index.html -> /notebook/index.html * /first-steps/create-notebook.html -> /notebook/create-notebook.html * /first-steps/install.html -> /notebook/install.html * /workspace/jupyter/$rest -> / * /workspace/first-steps/$rest -> /notebook/ * /workspace/ipython/$rest -> Python4DataScience:/workspace/ipython/ * /workspace/numpy/$rest -> Python4DataScience:/workspace/numpy/ * /workspace/pandas/$rest -> Python4DataScience:/workspace/pandas/ * /data-processing/$rest -> Python4DataScience:/data-processing/ * /clean-prep/$rest -> Python4DataScience:/clean-prep/ * /parameterise/$rest -> /notebook/parameterise/ * /performance/ipyparallel//$rest -> /hub/ipyparallel/ * /performance/ -> Python4DataScience:/performance/ * /productive/ -> Python4DataScience:/productive/ * /testing/$rest -> /notebook/testing/ * /web/dashboards/$rest -> /dashboards/
1 parent 60e197d commit b97f868

File tree

133 files changed

+3177
-356
lines changed

Some content is hidden

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

133 files changed

+3177
-356
lines changed

CITATION.cff

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
1-
cff-version: "1.1.0"
2-
message: "If you use this tutorial, please cite it as below."
1+
cff-version: 1.2.0
2+
title: Jupyter-Tutorial
3+
message: >-
4+
If you use this software, please cite it using the
5+
metadata from this file.
6+
type: software
37
authors:
4-
-
8+
- given-names: Veit
59
family-names: Schiele
6-
given-names: Veit
7-
orcid: "https://orcid.org/https://orcid.org/0000-0002-2448-8958"
10+
11+
affiliation: cusy GmbH
812
identifiers:
9-
-
10-
type: doi
11-
value: "10.5281/zenodo.4147287"
13+
- type: doi
14+
value: 10.5281/zenodo.8047111
15+
repository-code: 'https://github.com/veit/jupyter-tutorial-de'
16+
url: 'https://jupyter-tutorial.readthedocs.io/de/latest/'
17+
abstract: >-
18+
Schulungsmaterialen für den Aufbau und die Nutzung einer
19+
Forschungsinfrastruktur auf Basis von Jupyter Notebooks.
1220
keywords:
13-
- "data-science"
14-
- jupyter
15-
- "jupyter-notebooks"
16-
- "jupyter-kernels"
17-
- ipython
18-
- pandas
19-
- spack
20-
- pipenv
21-
- ipywidgets
22-
- "ipython-widget"
23-
- dvc
24-
title: "Jupyter tutorial"
25-
version: "0.8.0"
26-
date-released: 2020-10-08
27-
license: "BSD-3-Clause"
28-
repository-code: "https://github.com/veit/jupyter-tutorial"
21+
- Jupyter
22+
- Notebook
23+
- iPython
24+
- Jupyter-Notebook
25+
- JupyterHub
26+
- iPython-Widget
27+
- ipywidget
28+
license: BSD-3-Clause
29+
version: 1.0.0
30+
date-released: '2023-06-16'

README.rst

Lines changed: 10 additions & 13 deletions

codemeta.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
3+
"@type": "SoftwareSourceCode",
4+
"codeRepository": "https://github.com/veit/jupyter-tutorial-de/",
5+
"dateCreated": "2023-06-16",
6+
"datePublished": "2023-06-16",
7+
"dateModified": "2023-06-16",
8+
"downloadUrl": "https://github.com/veit/jupyter-tutorial-de/archive/refs/tags/v1.0.0.tar.gz",
9+
"issueTracker": "https://github.com/veit/jupyter-tutorial-de/issues",
10+
"name": "Jupyter-Tutorial",
11+
"version": "1.0.0",
12+
"description": "Schulungsmaterialen für den Aufbau und die Nutzung einer Forschungsinfrastruktur auf Basis von Jupyter Notebooks.",
13+
"developmentStatus": "active",
14+
"isPartOf": "https://www.python4data.science/de/latest/",
15+
"referencePublication": "https://doi.org/10.5281/zenodo.8047111",
16+
"keywords": [
17+
"Jupyter",
18+
"iPython",
19+
"Jupyter-Kernel",
20+
"iPython-Widget",
21+
"ipywidget",
22+
"Notebook",
23+
"JupyterHub",
24+
""
25+
],
26+
"relatedLink": [
27+
"https://jupyter-tutorial.readthedocs.io/de/latest/"
28+
],
29+
"author": [
30+
{
31+
"@type": "Person",
32+
"givenName": "Veit",
33+
"familyName": "Schiele",
34+
"email": "[email protected]",
35+
"affiliation": {
36+
"@type": "Organization",
37+
"name": "cusy GmbH"
38+
}
39+
}
40+
]
41+
}

docs/conf.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = "Veit Schiele"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "0.9.0"
25+
release = "1.0.0"
2626

2727

2828
# -- General configuration ---------------------------------------------------
@@ -82,7 +82,7 @@
8282
# documentation.
8383
#
8484
# Change default HTML title
85-
html_title = "Jupyter Tutorial 0.9.0"
85+
html_title = "Jupyter Tutorial 1.0.0"
8686
#
8787
# html_theme_options = {}
8888
# html_sidebars = {}
@@ -161,6 +161,10 @@
161161
"https://python-basics-tutorial.readthedocs.io/de/latest/",
162162
None,
163163
),
164+
"python4datascience": (
165+
"https://python4datascience.readthedocs.io/de/latest/",
166+
None,
167+
),
164168
}
165169

166170

File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 2 deletions
Lines changed: 5 additions & 5 deletions

docs/web/dashboards/jupyter-dashboards/dashboard-cell-menu.png renamed to docs/dashboards/jupyter-dashboards/dashboard-cell-menu.png

File renamed without changes.

docs/web/dashboards/jupyter-dashboards/dashboard-info.png renamed to docs/dashboards/jupyter-dashboards/dashboard-info.png

File renamed without changes.

0 commit comments

Comments
 (0)