I made my python webapp installable via pip

Running pip3 install pytaku now gives you all the tools you need 1 2 to deploy pytaku - a hobby webapp of mine - on a fresh Debian 11 server:

pytaku-generate-config > pytaku.conf.json  # generate config file
pytaku-migrate  # generate initial sqlite3 db, or migrate to new version
pytaku -w 5  # run main webapp using gunicorn on localhost:8000
pytaku-scheduler  # daemon that executes scheduled background tasks

# Optionally, run this to copy all static assets to a designated dir so your
# web server (nginx/caddy/etc.) can serve them directly instead of through
# the less performant gunicorn:
pytaku-collect-static /var/www/pytaku

So how does that work? Let’s break it down.

The pytaku-* executables#

Poetry is awesome. Not only does it offer sane dependency management that plays well with the pyenv + virtualenv combo, but it also vastly simplifies building and publishing python libraries. Telling pip to install executables alongside my library is as simple as writing a few lines in my pyproject.toml file:

[tool.poetry.scripts]
pytaku = "pytaku:serve"
pytaku-dev = "pytaku:dev"
pytaku-migrate = "pytaku:migrate"
pytaku-generate-config = "pytaku:generate_config"
pytaku-scheduler = "pytaku:scheduler"
pytaku-collect-static = "pytaku:collect_static"

The left hand side indicates the executable file name, while the right hand side declares which function to call. In my example, “pytaku:serve” points to the serve() function inside src/pytaku/__init__.py.

Now that we have easy access to CLI entry points, let’s quickly go over how each command works:

But why bother?#

Lincoln Loop’s series of Django-related blog posts were my main inspiration. Central to this idea is Using setup.py in Your (Django) Project, which explains both how and why you would want to make your python project pip-friendly. The “why” boils down to 2 points:

More broadly, the idea of simple distributing/deployment is, in my opinion, often overlooked these days. Fiddly deployment procedures are largely why Docker flourished: our industry just collectively gave up on self-contained software distribution and decided to ship a whole rootfs for each application process instead. Okay, I may be overreacting here, but I think it’s at least fair to say that if every webdev shop standardized on shipping Go binaries statically compiled with musl libc, we’d probably reach out for Docker less often. When I showed pytaku to a colleague of mine, his first question was essentially “Dockerfile when?”. Sure, Docker is neat and solves real problems, but how about we strive to avoid, or at least minimize, those problems in the first place? Remember, while container evangelists love harping on about negligible CPU overhead, they tend to gloss over the storage overhead:

$ docker image ls
REPOSITORY   TAG        IMAGE ID       CREATED       SIZE
python       3-alpine   bcf864391ba1   3 weeks ago   45.1MB
python       3-slim     66f4843b721f   3 weeks ago   122MB

And the operational complexity overhead. Did you know that by default Docker completely sidesteps your firewall? That even if you specifically tell it to only listen to a port on localhost, it may or may not still expose it to the whole world? That this remains an open bug since 2016? This isn’t one of those security bogeyman stories either, actual people have been bitten by it. At this point cloud apologists would probably jump in and point out how this isn’t an issue if you’re running on GCP or AWS because they have another layer of firewall that locks down every port by default that you can setup on their totally usable web console or infrastructure-as-code it in your cloudformations or your terraformses or, actually, do you have a moment to talk about our lord and savior Cthulhubernetes–

But I digress.

I guess what I was trying to say is, throwing abstractions over complex procedures is simply shifting the costs elsewhere. Shipping your software in a Dockerfile is fine, but making your distribution so simple that people can easily write a couple of lines of Dockerfile for it by themselves is more valuable. Simple distribution is simple to deploy regardless of whether you’re using docker, packer, ansible, pyinfra, podman, nomad, k8s, k3s, an impenetrable shell script some dude wrote 2 years ago who just left the company last month… or any combination of the above. The point is you shouldn’t be forced to use more heavyweight solutions just because the software is a pain in the butt to setup manually.

And other people have been trying to make python application distribution simpler:

We’ll get there. Someday.


  1. Well actually you still need to apt install python3-apsw, but that’s only because apsw refuses to provide a binary wheel on pypi. It can be replaced by the standard library sqlite3 module anyway - I only picked apsw because it exposes essentially the same API as the SQLite C library, which helped when I was learning to use SQLite properly for the first time.↩︎︎

  2. Even with the above, pytaku still won’t run out of the box because it needs a crappy proxy in order to bypass mangasee’s strict cloudflare protection. I know it’s lame but pytaku is practically a web scraper project and there’s no way to make it work reliably without a proxy pool anyway. I hope this doesn’t distract you from the point of the article though.↩︎︎