The FASTEST Way to Professional Python Developer!
- #52
- –
- Jan 03, 2021
In this screencast I will discuss a toipc which many developers avoid. The linters - specifically - flake8 with its PEP8 policy. Linters enforce specific style in your code. It might be …
Python Applications Packaging with Setuptools
- #8
- –
- Jan 08, 2020
In this lesson you will learn how to package your python application. I will use setuptools to illustrate the process. Setuptools is de facto standard for packaging and distribution of python modules. …
Python3 f-Strings - a Better Way to Format Strings
- #1
- –
- Dec 16, 2019
Python supports multiple ways to format text strings. These include %-formatting , str.format(). Each of these methods have their advantages, but in addition have disadvantages that make them cumbersome to use in …
Systemd for Python Developers
- #12
- –
- Jan 23, 2020
Since 2015 systemd is part of major Linux distributions. Thus, when deploying a python application we will need to work with some systemd units. So, why not take time and understand systemd? …