Posts tagged: python

All posts with the tag "python"

For an embarassingly long time, til today, I have been wrapping my dict gets with key errors in python. I'm sure I've...

I've referenced a video from Anthony Sotile in passing conversation several times. Walking through his gradual typing...

In order to make an auto title plugin for markata I needed to come up with a way to reverse the slug of a post to cre...

Getting docstrings from python's ast is far simpler and more reliable than any method of regex or brute force searchi...

Many tools such as ripgrep respect the file in the directory it's searching in. This helps make it incredibly faster ...

When running a python process that requires a port it's handy if there is an option for it to just run on the next av...

Python comes with an enum module for creating enums. You can make your own enum by inheriting importing and inheritin...