Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cusyio/python4datascience-de
Schulungsmaterialen für den Aufbau und die Nutzung einer Forschungsinfrastruktur auf Basis von Jupyter Notebooks: https://cusy.io/de/seminare
https://github.com/cusyio/python4datascience-de
Last synced: 10 days ago
JSON representation
Schulungsmaterialen für den Aufbau und die Nutzung einer Forschungsinfrastruktur auf Basis von Jupyter Notebooks: https://cusy.io/de/seminare
- Host: GitHub
- URL: https://github.com/cusyio/python4datascience-de
- Owner: cusyio
- License: bsd-3-clause
- Created: 2023-06-05T13:54:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T14:55:59.000Z (30 days ago)
- Last Synced: 2024-10-22T11:59:21.369Z (29 days ago)
- Language: Python
- Size: 30.1 MB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
Awesome Lists containing this project
README
.. SPDX-FileCopyrightText: 2020 Veit Schiele
..
.. SPDX-License-Identifier: BSD-3-ClausePython4DataScience
==================.. _badges:
Status
------.. image:: https://img.shields.io/github/contributors/cusyio/python4datascience-de.svg
:alt: Contributors
:target: https://github.com/cusyio/python4datascience-de/graphs/contributors
.. image:: https://img.shields.io/github/license/cusyio/python4datascience-de.svg
:alt: License
:target: https://github.com/cusyio/python4datascience-de/blob/main/LICENSE
.. image:: https://results.pre-commit.ci/badge/github/cusyio/Python4DataScience-de/main.svg
:target: https://results.pre-commit.ci/run/github/649725482/1726568571.WhuLTrgJT3aZZkF-R0Fd8w
:alt: pre-commit.ci status
.. image:: https://readthedocs.org/projects/python4datascience-de/badge/?version=latest
:alt: Docs
:target: https://python4datascience-de.readthedocs.io/de/latest/
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.10907725.svg
:alt: DOI
:target: https://zenodo.org/records/10907725
.. image:: https://img.shields.io/badge/dynamic/json?label=Mastodon&query=totalItems&url=https%3A%2F%2Fmastodon.social%2F@Python4DataScience%2Ffollowers.json&logo=mastodon
:alt: Mastodon
:target: https://mastodon.social/@Python4DataScience.. _first-steps:
Überblick
---------Dieses Repository enthält ein Tutorium für Datenmanagement und -analyse mit Python.
Die Ordner enthalten:- ``data/`` - Daten für ein Beispielprojekt
- ``docs/`` - die eigentliche Dokumentation
- ``fastapi/`` - Beispielprojekt eines Servers, der Daten bereitstelltInstallation
------------#. Herunterladen und Auspacken:
.. code-block:: console
$ curl -O https://codeload.github.com/cusyio/python4datascience-de/zip/main
$ unzip main
Archive: main
…
creating: python4datascience-de-main/
…#. Installieren der Python-Pakete
.. code-block:: console
$ cd python4datascience-de-main
$ python3 -m venv .venv
$ . .venv/bin/activate
$ python -m pip install -e ".[dev]"#. Installieren der `Jupyter Notebook Extensions
`_:.. code-block:: console
$ jupyter contrib nbextension install --user
jupyter contrib nbextension install --user
Installing jupyter_contrib_nbextensions nbextension files to jupyter data directory
…
Successfully installed jupyter-contrib-core-0.3.3 jupyter-contrib-nbextensions-0.5.1
jupyter-highlight-selected-word-0.2.0 jupyter-latex-envs-1.4.6
jupyter-nbextensions-configurator-0.4.1
…
$ jupyter nbextension enable latex_envs --user --py
Enabling notebook extension latex_envs/latex_envs...
- Validating: OK#. HTML-Dokumentation erstellen:
.. code-block:: console
$ cd docs
$ make html#. PDF erstellen:
Für die Erstellung von PDFs benötigt ihr weitere Pakete.
Für Debian/Ubuntu erhaltet ihr diese mit:
.. code-block:: console
$ sudo apt install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended latexmk
oder für macOS mit:
.. code-block:: console
$ brew cask install mactex
…
🍺 mactex was successfully installed!
$ curl --remote-name https://www.tug.org/fonts/getnonfreefonts/install-getnonfreefonts
$ sudo texlua install-getnonfreefonts
…
mktexlsr: Updating /usr/local/texlive/2020/texmf-dist/ls-R...
mktexlsr: Done.Anschließend könnt ihr ein PDF generieren mit:
.. code-block:: console
$ make latexpdf
…
The LaTeX files are in _build/latex.
Run 'make' in that directory to run these through (pdf)latex
…Das PDF findet ihr anschließend in ``docs/_build/latex/jupytertutorial.pdf``.
.. _follow-us:
Folge uns
---------* `GitHub `_
* `Mastodon `_Pull-Requests
-------------Wenn ihr Vorschläge für Verbesserungen und Ergänzungen habt, empfehle ich euch,
einen `Fork `_ meines
`GitHub-Repository `_ zu
erstellen und darin eure Änderungen vorzunehmen. Gerne dürft ihr auch einen
*Pull Request* stellen. Sofern die darin enthaltenen Änderungen klein und
atomar sind, schaue ich mir eure Vorschläge gerne an.Da eine englischsprachige Übersetzung gepflegt wird, beachtet folgende
Richtlinien:* Commit messages auf Englisch
* Commit messages mit einem `Gitmoji `__ am Anfang
* Namen von Ordnern und Dateien auf Englisch.