{"id":23988866,"url":"https://github.com/veit/python-basics-tutorial-de","last_synced_at":"2025-08-07T01:24:54.075Z","repository":{"id":37242844,"uuid":"420118684","full_name":"veit/python-basics-tutorial-de","owner":"veit","description":"Schulungsmaterialen für unseren Python-Basis-Kurs: https://cusy.io/de/seminare","archived":false,"fork":false,"pushed_at":"2025-08-03T17:29:25.000Z","size":2660,"stargazers_count":5,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-03T18:19:53.429Z","etag":null,"topics":["pytest","python","sphinx-documentation","sqlite3","testing-tools","uml-diagrams","xml"],"latest_commit_sha":null,"homepage":"https://python-basics-tutorial.readthedocs.io/de/latest/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/veit.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-10-22T13:56:05.000Z","updated_at":"2025-08-03T17:29:28.000Z","dependencies_parsed_at":"2024-02-25T11:39:17.713Z","dependency_job_id":"ddf84153-f363-4221-867e-c09fa60359f1","html_url":"https://github.com/veit/python-basics-tutorial-de","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/veit/python-basics-tutorial-de","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veit%2Fpython-basics-tutorial-de","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veit%2Fpython-basics-tutorial-de/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veit%2Fpython-basics-tutorial-de/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veit%2Fpython-basics-tutorial-de/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veit","download_url":"https://codeload.github.com/veit/python-basics-tutorial-de/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veit%2Fpython-basics-tutorial-de/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269183683,"owners_count":24374360,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-06T02:00:09.910Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pytest","python","sphinx-documentation","sqlite3","testing-tools","uml-diagrams","xml"],"created_at":"2025-01-07T16:18:39.137Z","updated_at":"2025-08-07T01:24:54.037Z","avatar_url":"https://github.com/veit.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Schnelleinstieg\n===============\n\nStatus\n------\n\n.. image:: https://img.shields.io/github/contributors/veit/python-basics-tutorial-de.svg\n   :alt: Contributors\n   :target: https://github.com/veit/python-basics-tutorial-de/graphs/contributors\n.. image:: https://img.shields.io/github/license/veit/python-basics-tutorial-de.svg\n   :alt: License\n   :target: https://github.com/veit/python-basics-tutorial-de/blob/main/LICENSE\n.. image:: https://readthedocs.org/projects/python-basics-tutorial-de/badge/?version=latest\n   :alt: Docs\n   :target: https://python-basics-tutorial.readthedocs.io/de/latest/\n\nInstallation\n------------\n\n#. Herunterladen und auspacken:\n\n   … auf Linux/macOS:\n\n   .. code-block:: console\n\n    $ curl -O https://codeload.github.com/veit/python-basics-tutorial-de/zip/main\n    $ unzip main\n    Archive:  main\n    …\n       creating: python-basics-tutorial-de-main/\n    …\n\n   … auf Windows:\n\n   .. code-block:: ps1con\n\n    C:\u003e curl.exe -o main.zip -O https://codeload.github.com/veit/python-basics-tutorial-de/zip/main\n    C:\u003e tar -xvzf main.zip\n    python-basics-tutorial-de-main/\n    python-basics-tutorial-de-main/.gitignore\n    …\n\n#. Installieren von Python-Paketen:\n\n   … auf Linux/macOS:\n\n   .. code-block:: console\n\n      $ python3 -m venv .venv\n      $ . .venv/bin/activate\n      $ python -m pip install --upgrade pip\n      $ python -m pip install --group=dev\n\n   … auf Windows:\n\n   .. code-block:: ps1con\n\n      C:\u003e py -m venv .venv\n      C:\u003e .\\.venv\\Scripts\\activate.bat\n      C:\u003e python -m pip install --upgrade pip\n      C:\u003e python -m pip install --group=dev\n\n#. Erstellen der HTML-Dokumentation:\n\n   .. note::\n      pandoc und plantuml müssen installiert sein.\n\n      … auf Debian/Ubuntu:\n\n      .. code-block:: console\n\n         $  sudo apt install pandoc plantuml\n\n   Zum Erstellen der HTML-Dokumentation führt den folgenden Befehl aus:\n\n   .. code-block:: console\n\n      $ sphinx-build -ab html docs/ docs/_build/html/\n\n#. Erstellen eines PDF:\n\n   Zum Erstellen einer PDF-Dokumentation benötigt ihr zusätzliche Pakete, die\n   ihr installieren könnt\n\n   … auf Debian/Ubuntu mit\n\n   .. code-block:: console\n\n      $ sudo apt install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended latexmk\n\n   … auf macOS mit\n\n   .. code-block:: console\n\n      $ brew cask install mactex\n      …\n      🍺  mactex was successfully installed!\n      $ curl --remote-name https://www.tug.org/fonts/getnonfreefonts/install-getnonfreefonts\n      $ sudo texlua install-getnonfreefonts\n      …\n      mktexlsr: Updating /usr/local/texlive/2020/texmf-dist/ls-R...\n      mktexlsr: Done.\n\n   Anschließend könnt ihr ein PDF generieren mit:\n\n   .. code-block:: console\n\n    $ cd docs/\n    $ make latexpdf\n    …\n    The LaTeX files are in _build/latex.\n    Run 'make' in that directory to run these through (pdf)latex\n    …\n\n   Das PDF findet ihr dann in ``docs/_build/latex/pythonbasics.pdf``.\n\nFolgt uns\n---------\n\n.. _follow-us:\n\n* `GitHub \u003chttps://github.com/veit/python-basics-tutorial-de\u003e`_\n* `Mastodon \u003chttps://mastodon.social/@Python4DataScience\u003e`_\n* `Bluesky \u003chttps://bsky.app/profile/python4data.science\u003e`_\n\n.. _end-follow-us:\n\nPull-Requests\n-------------\n\nWenn ihr Vorschläge für Verbesserungen und Ergänzungen habt, empfehle ich euch,\neinen `Fork \u003chttps://github.com/veit/python-basics-tutorial-de/fork\u003e`_ meines\n`GitHub Repository \u003chttps://github.com/veit/python-basics-tutorial-de/\u003e`_ zu\nmachen und eure Änderungen hier zu machen. Ihr könnt auch gerne einen  *pull\nrequest* stellen. Wenn die dort enthaltenen Änderungen klein und atomar sind,\nwerde ich mir eure Vorschläge gerne anschauen.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveit%2Fpython-basics-tutorial-de","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveit%2Fpython-basics-tutorial-de","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveit%2Fpython-basics-tutorial-de/lists"}