TIL - 🧹 unimport linter formatter
what if you (like me) don’t like to clean up your code while in the zone, but you value a linted and well formatted codebase?
TIL - 🎁 Extracting modules provided by installed package
How do I get at runtime the list of modules installed by package? Use setuptools, Luke!
TIL - Submitting a form from an external button
You can submit a form from a button not included in the form itself
My Python linting setup in 2020

“How I Learned to Stop Worrying and Love the automated code formatting”
Converting a django CMS plugin to a different model

Migrating django CMS plugins data from one model to another, for example during an upgrade, is a bit tricky. Thansk to its polymorphic nature, though, it’s not complicated to achieve, one you know the underlying structure.