Skip to content

Blogs about Python

14 blogs about Python.

  1. Andrea Grandi
    🇮🇹 More info

    Updated
    Buy or Rent? RaspberryPi vs VPS
    Recently I was planning to self host a service I’m using and I was immediately stuck on a decision: should I just buy a Raspberry Pi 5 or rent a VPS? Requirements Let’s starts from …
    613 words
  2. Django Andy
    My travels through the worlds of Django, Python, DevOps and Full Stack web development. By Andy Ide. 🇦🇺 More info

    Updated
    Enabling WAL in SQLite in Django
    Write Ahead Logging (WAL) mode is a mode that enables more concurrent writes in SQLite. I implemented this as I have a local Django app that uses SQLite, and sometimes I would get database locks …
    By djangoandy, 178 words
  3. Haki Benita
    The writings of Haki Benita. 🇮🇱 More info

    Updated
    Fastest Way to Read Excel in Python
    I don't have any data to support this next claim, but I'm fairly sure that Excel is the most common way to store, manipulate, and yes(!), even pass data around. This is why it's not …
    By Haki Benita, 3,492 words
  4. Hynek’s Blog
    Hynek Schlawack: Pythonista, Gopher, blogger, and speaker from Berlin/Germany. 🇩🇪 More info

    Updated
    Python Project-Local Virtualenv Management Redux
    One of my first TIL entries was about how you can imitate Node’s node_modules semantics in Python on UNIX-like operating systems. A lot has happened since then (to the better!) and it’s time for an …
    By Hynek Schlawack, 45 words
  5. Kurt McKee
    lessons learned in production. More info

    Updated
    Revitalizing stalled open source projects
    I recently encountered an open source project that hadn't received updates for a while. The issue tracker had ~200 open issues, ~70 open pull requests, and CI was partially failing. It's not uncommon for projects …
    By Kurt McKee, 1,943 words
  6. Mathspp Blog
    A blog dedicated to mathematics and programming! By Rodrigo Girão Serrão. 🇵🇹 More info

    Updated
    Customising object creation with __new__
    The dunder method __new__ is used to customise object creation and is a core stepping stone in understanding metaprogramming in Python. Customising object creation with __new__ The dunder method __new__ is a static method that …
    500 words
  7. The Pallets Projects
    A collection of Python web development libraries that are associated with the Flask microframework. More info

    Updated
    Blinker 1.6 Released
    Signalling allows for applications to be decoupled by allowing designated receivers to be informed when an action has taken place (the signal). Flask and Quart both utilise the excellent Blinker library to support signals and …
    By P G Jones, 129 words
  8. Python for Engineers
    Now Powered by Flux Capacitors! And with 100% more Electrolytes. By Shantnu Tiwari. 🇬🇧 More info

    Updated
    Awesome Python Library: Tenacity
    Link: https://tenacity.readthedocs.io/en/latest/When writing code or tests in Python, one issue I had was when the code would fail due to random things like network issues or external peripherals not responding in time. Just rerunning the …
    By Shantnu Tiwari, 591 words
  9. Reinout van Rees' personal website
    Personal website of Reinout van Rees. Django/Python software developer. Ligfietsen. 🇳🇱 More info

    Updated
    PyGrunn: blender & python: the pleasure & the struggle - Sybren Stüvel
    (One of my summaries of the 2024 Dutch PyGrunn python&friends conference in Groningen, NL). He showed a demo video of content created with blender. Blender started in 1994 (python 1991). Like most open source projects, …
    By Reinout van Rees, 595 words
  10. Rock and Null
    Tech, software and whatever comes to mind. More info

    Updated
    How to clear the state of the app in Maestro tests (iOS)
    While UI testing may seem straightforward at first glance, it can quickly become complex, especially when dealing with various app states. One of the main challenges is preparing the app for different test scenarios.The Issue …
    By Michael Mavris, 337 words
  11. Simon Willison’s Weblog
    🇺🇸 More info

    Updated
    Image resize and quality comparison
    Image resize and quality comparison Another tiny tool I built with Claude 3.5 Sonnet and Artifacts. This one lets you select an image (or drag-drop one onto an area) and then displays that same image …
    270 words
  12. Tall, Snarky Canadian
    Python core developer. Dev manager for the Python extension for VS Code. Tall, snarky Canadian. By Brett Cannon. 🇨🇦 More info

    Updated
    My impressions of ReScript
    I maintain a GitHub Action called check-for-changed-files. For the purpose of this blog post what the action does isn't important, but the fact that I authored it originally in TypeScript is. See, one day I …
    By Brett Cannon, 839 words
  13. Weblog archive
    By James Bennett. 🇺🇸 More info

    Updated
    Know your Python container types
    This is the last of a series of posts I’m doing as a sort of Python/Django Advent calendar, offering a small tip or piece of information each day from the first Sunday of Advent through …
    By James Bennett, 83 words
  14. Yasoob Khalid
    The author of Intermediate Python and the Practical Python Projects books. 🇺🇸 More info

    Updated ⚠️️

    Still trying to fetch this feed, but last time we got ‘Connection timed out’.

    Running Go code from Elixir Using Web Assembly
    I was working on an Elixir project recently and one particular open source package that I wanted to make use of was written in Go. I searched for different ways to interface with Go code …
    99 words