+ 1
How can I create an app for android and windows with python?
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
+ 2
https://www.wikihow.com/Search-the-Internet