Tag: Python
All the articles with the tag "Python".
-
Building a Telegram bot to babysit 24,000 developers
6 min read pythonHow I built PythonID-bot to manage the Indonesian Python community on Telegram.
-
4 Root Causes Hiding Behind One Airflow Error
6 min read airflowA debugging session that started with one Airflow error and uncovered four cascading failures across Docker images, Kubernetes caching, namespace boundaries, and Python string iteration.
-
Building Almanac Games: Scraping PSN with Duct Tape and Playwright
4 min read devI wanted to show my PlayStation trophies on my blog. It took a Python scraper, Cloudflare cookie theft, and way too many regex fixes.
-
Several Cool Things You Can Do with F-Strings in Python
3 min read PythonF-strings are a powerful and easy-to-use way to format strings in Python.
-
Your Own Python Calendar
1 min read PythonThe Python calendar module defines the Calendar class. This is used for various date calculations as well as TextCalendar and HTMLCalendar classes with their local subclasses, used for rendering pre-formatted output.
-
Get the Most of Floats
1 min read PythonFloats also have several additional methods useful in various scenarios
-
Format text paragraphs with textwrap
1 min read PythonPython's textwrap module is useful for rearranging text, e.g. wrapping and filling lines.
-
Unicode Character Database at Your Hand
1 min read PythonPython's self-explanatory module called unicodedata provides the user with access to the Unicode Character Database and implicitly every character's properties.