Python Certifi and custom CAs

At my last project, I wrote a small Python utility program to create and delete secrets in Hashicorp Vault. This tool was executed inside a docker container (and the container ran in a CI-pipeline). The container also talked to some other services that use an internal CA that was …

more ...

TIL how to ship an executable with Poetry

I wanted to build an executable python script on PyPi, so it can be run like MyPackage instead of python MyPackage.py.

Finding out how to do this with Poetry was hard. Googling for “Python [distribute\|publish] executable” didn’t yield any useful results. I don’t even know how …

more ...