Creating Gui for Your Python App

Intro Sometimes it is just nice to make a simple GUI for your python application. There could be a lot of reasons why you want to, or perhaps need to do this. For personal use, you might have several machines that you would like to run the application on. For sharing purposes, there might be fellow colleagues who need to use the python application wihtout wanting to interact with the terminal....

April 15, 2021 · 4 min · Me

Upload to Pypi

Intro Few days ago, I published my first python package to pypi. Here’s what I’ve learned. Tools build and twine were the two fundamental packages. The build package literally builds a repository into a distributable compressed file. This simple command python3 -m build will create a dist/ directory which contains the tar.gz and whl files. twine can directly upload your repository to pypi and testpypi. testpypi is nothing more than a test version of pypi....

April 15, 2021 · 3 min · Me