PyCon Pittsburgh. April 15-23, 2020. (original) (raw)
Tutorial: Modern Python Developer's Toolkit
Presented by:
Description
This is a tutorial that I wish someone gave to me when I first learned Python.
Python is (relatively) easy and fun to learn, but there is a gap between “knowing how to write Python code” and “knowing the tools and good practices when writing Python code”. This tutorial will try to bridge this gap. It’s intended for beginners who know Python, but who are not sure how to write a Python project from scratch.
In this tutorial you will learn:
- How to set up VS Code for writing Python
- How to use
virtualenv,pyenv,pipenv, andpipx - How to use
cookiecutter, how to structure your Python project, and how to easily deploy it with Docker - What’s PEP8 and how to enforce it with code linters/formatters (
black) - Why you should use
IPythoninstead of Python REPL - How to test your code with
pytest - How to create great documentation with
Sphinx
To follow all parts of the tutorial you need to have: VS Code, Docker, and a modern version of Python (at least 3.4, preferably 3.6 or newer) installed on your computer.