How can I create an app for android and windows with python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can I create an app for android and windows with python?

19th Apr 2022, 6:12 PM
moti
moti - avatar
2 Answers
+ 3
Presuming what you’re asking is related to GUI’s and packaging for apps: For GUI on Windows (and other desktop OS’s): - Tkinter (comes with Python) - PyGTK (see website) - PyQt (see website) I’m less familiar with GUI’s for mobile platforms, but you might look instead at using a webapp with a Django (Python) back-end. This, honestly, might be the best approach in general; you can write the UI in whatever Web framework you prefer and then run it locally or require internet connection. This makes it inherently platform-independent as long as you can figure out how to get webapps to run in whatever environment you prefer. Windows/MacOS/Android/iOS wil all have tools and docs to help you. If you want to continue with packaging a .py file/project to run independently, please see this page for more details than I can explain here: https://packaging.python.org/en/latest/overview/#packaging-python-libraries-and-tools
19th Apr 2022, 6:29 PM
Jeremy Miller
+ 2
https://www.wikihow.com/Search-the-Internet
19th Apr 2022, 6:29 PM
Simon Sauter
Simon Sauter - avatar