From Zero to Production: A Complete Python Setup Guide
Python, Zumbro Peter Somerville Python, Zumbro Peter Somerville

From Zero to Production: A Complete Python Setup Guide

You've got a brilliant Python project idea. You create a file called main.py, and start coding. Fast forward six months: your script has grown into multiple files, dependencies, and contributors. Now you're drowning in errors and deployment headaches. Most Python projects start this way, but they don't have to. By setting a strong foundation, you save headaches and plan for project success.

Read More
Hands-On CI: Building Your First GitHub Actions Workflow
GitHub, Continuous Integration, Automation Peter Somerville GitHub, Continuous Integration, Automation Peter Somerville

Hands-On CI: Building Your First GitHub Actions Workflow

We have previously talked about why Continuous Integration is a powerful DevOps concept for helping your team develop high-quality code faster. Today we are taking you through a deep-dive into the “how,” with step-by-step instructions for setting up a linting pipeline in GitHub Actions. We’ll explain how and why CI workflows can take your team to the next level!

Read More
Legacy Code: Defuse the Time Bomb
DevOps, Engineering Standards, Zumbro Peter Somerville DevOps, Engineering Standards, Zumbro Peter Somerville

Legacy Code: Defuse the Time Bomb

Legacy code that doesn’t measure up to your linting or formatting standards can lie dormant for months and then explode into a crisis. Tackling these hidden hazards isn’t just a nice-to-have, it’s essential for keeping your software delivery engine humming. In this post we’ll walk through the ways that outdated legacy code can bring your team to a halt, and show you how Zumbro, our GitHub App, offers a fast and straightforward way to get control of your legacy mess.

Read More
How Zumbro Helps Your Software Team
Zumbro, DevOps Peter Somerville Zumbro, DevOps Peter Somerville

How Zumbro Helps Your Software Team

The Zumbro App for GitHub helps you define, apply, and enforce engineering standards right in your workflow, without adding overhead. Below are three situations where teams hit the same roadblocks, and how Zumbro can help you ship better code faster.

Read More
The pre-commit Playbook
Engineering Standards, Caparra, DevOps Peter Somerville Engineering Standards, Caparra, DevOps Peter Somerville

The pre-commit Playbook

One of the core ideas behind DevOps is "shifting left." That means moving critical checks, testing, and feedback earlier in the software development lifecycle. Pre-Commit takes that "shift left" principle and gives it teeth. By running automated checks before code gets committed, it helps teams enforce consistency, spot bugs early, and maintain high standards. Check it out:

Read More
A Surprising Secret About Python Linters
Python, DevOps, Engineering Standards Peter Somerville Python, DevOps, Engineering Standards Peter Somerville

A Surprising Secret About Python Linters

It sounds crazy: you run your linter, fix the issues, run it again… and suddenly it finds more issues. Wait, what?

Yes, it’s a real thing. Depending on the complexity of your code and the tools you’re using, sometimes one pass isn’t enough to get a clean bill of health. But don’t worry, there’s a simple fix: run your linters twice!

Read More
Teach Your AI Agent to Write Python Logs Like a Pro
Artificial Intelligence, Python Peter Somerville Artificial Intelligence, Python Peter Somerville

Teach Your AI Agent to Write Python Logs Like a Pro

Last week we made the case for why logging is the DevOps superpower that gives you X-ray vision into your systems. What if you are using AI Agents to write your Python code? Just like we train junior developers to build habits that lead to better software, we need to guide our AI Agents to log their code in smart, structured, and consistent ways.

Read More
Why Your Team Needs pre-commit
GitHub, Engineering Standards Peter Somerville GitHub, Engineering Standards Peter Somerville

Why Your Team Needs pre-commit

It’s easy to overlook pre-commit when you’re already using GitHub and have a continuous integration pipeline. Why add complexity? In fact, when used well, pre-commit can be the simplest and most effective way to eliminate bugs, style issues, and config drift before they even enter your Git history. pre-commit helps shift quality left, right into your fingertips as you write and commit code.

Read More
Why Linters Hate Unused Imports
Python Peter Somerville Python Peter Somerville

Why Linters Hate Unused Imports

If you’ve been writing Python code for long, you’ve run into one of the many tools that want to clean up your files. And you’ve probably noticed that they all want to delete unused imports. This might seem a little nitpicky, but there are good reasons to nuke unused imports. And while it starts with clean code, the reasons don’t end there.

Read More
Python Linter Showdown
Python, DevOps, Software Chad Rhyner Python, DevOps, Software Chad Rhyner

Python Linter Showdown

Python Linter Showdown! It’s time for a spirited comparison of four popular Python linters: black, flake8, pylint, and ruff. Each tool promises to tidy up your code, catch pesky bugs, and keep your scripts neat. Our contestants today will face off on three files containing some not-so-great Python. Get ready to witness our code-based house of horror!

Read More
Sort It Out: How isort Makes Python Better
DevOps Peter Somerville DevOps Peter Somerville

Sort It Out: How isort Makes Python Better

When working with Python, keeping your code clean and organized is essential. You may have heard of isort, a handy tool that automatically sorts your Python imports. Keeping your import statements sorted is a simple step that is deceptively powerful, and we’ll talk about how adding isort to your Python workflows can save you hours and hours of time debugging your code. If only every part of coding was this easy!

Read More
Intro to Linters in Python: Clean and Bug-Free Code
Peter Somerville Peter Somerville

Intro to Linters in Python: Clean and Bug-Free Code

Writing clean, error-free code is a lot easier when you have a little help. That’s where linters come in. In this post, we’ll introduce you to linters for Python, and walk through what they are, how to use them, where they came from, and why they’re so useful. We’ll also show a simple Python linting example, and cover how to integrate linters into different environments, from your local editor to CI/CD pipelines. Finally, we’ll recommend the best Python linter for beginners. Let’s get started!

Read More