Skip to content

Commit

Permalink
fix and add links to python docs
Browse files Browse the repository at this point in the history
The first slide missed https:// which made the link invalid,
while the slide about standart modules received a link to the official list.
  • Loading branch information
Deric-W committed Oct 15, 2021
1 parent 6f10526 commit 408d1c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion latex/slides/01_getting_started.tex
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ \section{Über diesen Kurs}
\begin{itemize}
\item \href{http://auditorium.inf.tu-dresden.de}{auditorium} %TODO: add link to our group once it exists
\item Google (python/python3 meine frage hier) landet oft in der python 2.7 Doku (Versionsswitcher im Menü)
\item \href{docs.python.org}{offizielle Dokumentation}
\item \href{https://docs.python.org}{offizielle Dokumentation}
\item unsere \href{https://github.com/fsr}{Github-Organisation}
\end{itemize}
\item Hinweis: SCM's sind hilfreich (\href{https://git-scm.com}{git}, \href{http://mercurial.selenic.com/}{mercurial})
Expand Down
1 change: 1 addition & 0 deletions latex/slides/04_modules_packages_pip.tex
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ \subsection{Standardmodule}
\begin{frame}{Standardmodule}
Python liefert viele n\"utzliche Module bereits in der Standardbibliothek mit, z.B.:
\texttt{sys}, \texttt{os}, \texttt{http}, \texttt{re}, \texttt{fuctools}, \texttt{itertools}, \texttt{collections}, \texttt{hashlib}, \texttt{urllib} und viele mehr. \\ \ \\
Eine Liste aller Module findet man in der \href{https://docs.python.org/3/library/index.html}{offiziellen Dokumentation}.
Daher bezeichnet man Python oft auch als \textbf{Batteries included}.
\end{frame}

Expand Down
2 changes: 1 addition & 1 deletion md/01_getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- [auditorium](http://auditorium.inf.tu-dresden.de)
- Google (python/python3 meine frage hier) landet oft in der
python 2.7 Doku (Versionsswitcher im Menü)
- [offizielle Dokumentation](docs.python.org)
- [offizielle Dokumentation](https://docs.python.org)
- unsere [Github-Organisation](https://github.com/fsr)
- Hinweis: SCM’s sind hilfreich ([git](https://git-scm.com),
[mercurial](http://mercurial.selenic.com/))
Expand Down
2 changes: 2 additions & 0 deletions md/04_modules_packages_pip.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ bereits in der Standardbibliothek mit, z.B.: `sys`, `os`, `http`, `re`,
`functools`, `itertools`, `collections`, `hashlib`, `urllib` und viele
mehr.

Eine Liste aller Module findet man in der [offiziellen Dokumentation](https://docs.python.org/3/library/index.html).

Daher bezeichnet man Python oft auch als **Batteries included**.

# Packages
Expand Down

0 comments on commit 408d1c6

Please sign in to comment.