Automating Every Aspect of Your Python Project

Every Python project can benefit from automation using Makefile, optimized Docker images, well configured CI/CD, Code Quality Tools and… Read more

Similar

How to Always run Python 3 from Bash

Given a directory that contains: We can create a runme.sh file to always make sure we are running python 3. Create a shell script Create a file called runme.sh and put the following code in: Now instead of running python app.py or python3 app.py, you can ... (more…)

Read more »

Create an Excellent Python Dev Env

There are a huge number of Python dev tools around, a number of them are essential for my day to day development. However, they tend to suffer from a lack of discoverability and it takes a while to find what works for you.

Read more »