U: Python
U: {GUIs für Python}?
- Kivy
- man kann in Python oder in Kivy programmieren
- Windows, Unix, macOS
- auch Android, siehe {Python auf Android}?
- Kivy crash course
- https://www.youtube.com/watch?v=F7UKmK9eQLY Kivy crash course 1: Making a simple App
- https://www.youtube.com/watch?v=t8N_8WkALdE Kivy crash course 2: Building an android apk
- https://www.youtube.com/watch?v=ZmteLworB4E Kivy crash course 5: Mixing python and kivy language
- https://www.youtube.com/watch?v=YOhx-5BTcNc Getting Python All Up in Your Mobile with Kivy
- https://www.youtube.com/watch?v=8zSNzUAfohA Kivy - Creating Desktop and Mobile Apps with Python #ansehen
- https://www.youtube.com/watch?v=CYNWK2GpwgA Kivy with Python tutorial for Mobile Application Development Part 1
- https://kivy.org/doc/stable/gettingstarted/intro.html
- {Installation von Kivy}?
-
from kivy.app import App
from kivy.uix.label import Label
class SimpleKivy(App):
def build(self):
return Label(text="Hello")
if __name__ == "__main__":
SimpleKivy().run() - https://pythonprogramming.net/
- https://stackoverflow.com/questions/21763772/how-to-write-and-save-into-...
- https://stackoverflow.com/questions/35895721/how-to-load-string-from-tex...
- https://stackoverflow.com/questions/31368383/open-read-write-a-file-in-s...
- https://stackoverflow.com/questions/30372935/python-kivy-write-read-file...
- https://kivy.org/doc/stable/api-kivy.uix.filechooser.html
- https://kivy.org/doc/stable/guide/lang.html
- https://www.youtube.com/watch?v=TCWC4kWOoiI How to build android apk using Python/Kivy (part 1)