RSSAmplifier

Blog

Ritwik Tiwari

Ritwik Tiwari's blog on tech, tutorials, and AI.

ritwiktiwari.comRSS feed ↗2 posts

Latest posts

copier-astral: My Opinionated Python Project Template

Every time I started a new Python project, I had to do the same things again. Set up a virtual environment. Configure a linter. Write tests. Add a CI pipeline. Create a Makefile. Set up docs. The first time it was fine. By the tenth time, it felt tedious. copier-astral is how I fixed that problem. It is a Copier template that creates a fully configured Python project in seconds, using the Astr...

Installing Python on macOS

macOS ships with a system version of Python, but you shouldn’t use it for development — it’s outdated, tied to the OS, and modifying it can break system tools. Here’s the recommended way to install and manage Python on macOS. Option 1: Homebrew (recommended) If you don’t have Homebrew installed yet: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh...