Python terminal app as Android Phone app

5 points by dharmatech a day ago

I put together a small water consumption app (how much water you drink in a day) in SQLite and Python.

Then I wanted to use it on my phone so I made a Kotlin app as a UI for the simple database.

Then I wondered, how far could I get if I just ran a Python terminal app on my phone?

Well, I got surprisingly far...

https://youtu.be/sTj1FalZMVw?si=yZShqGdDBewV8dob

Happy to release the code at some point. Just need to organize the repo a bit.

I'm surprised I haven't seen more terminal apps intended to be run as phone apps like this. Let's me know if you know of any others.

rumpelstiel 9 hours ago

You could split the ui and backend code using fast api and sqlalchemy. so you later could change the ui endpoint to point to your nas hosted remote backend (using vpn), but thanks for the i spiration using a tui.

Or you could create a app user on a ssh server and this user starts this app instead of a shell on the server, like your-app@your-server.con

dasboth a day ago

Textual apps powered by sqlite running on a phone sounds like a superpower for filling your phone with useful tools, thanks for sharing! Does it access a local sqlite file or are you hosting that somewhere? Either way, this is really neat.

dharmatech 21 hours ago

Just tested on termux and it works great there too.