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 ...




Python backup script revisited

Here I wrote about my initial attempts with Python. I started with a backup script for my home-computer because that’s what I needed at the time. Now I’m reviewing and tweaking it.

My considerations at the time of writing the initial script were:

  • It should check if the …
more ...