How create a mobile app with python and static web (html, css and js)

I’m searching for a way to create a python desktop gui program, and in the search I find the package named ‘eel‘ and I liked how it works, because the visual application is made with html, css and javascript. It create a desktop application, so I’m with this question: have a way to create a mobile application, like we can do with kivy, using html, javascript and css?

>Solution :

Check out progressive web applications, they may interest you:
https://en.wikipedia.org/wiki/Progressive_web_app
https://web.dev/learn/pwa/

example with Django (first article found by me in the Internet)
https://medium.com/beginners-guide-to-mobile-web-development/convert-django-website-to-a-progressive-web-app-3536bc4f2862

example with flask (also first article found in the Internet)
https://medium.com/@tristan_4694/how-to-create-a-progressive-web-app-pwa-using-flask-f227d5854c49

Also as far as I know Toga allows you to use html and css for styling.
https://toga.readthedocs.io/en/stable/

Leave a Reply