Q:

kivy

"""
Kivy is a cross-platform python library for developing apps across many 
devices, including:

1.  IOS
2. Android
3. Windows
4. Linux
5. MacOS

Even better for developers - It's open source!
"""
6
$ pip install buildozer
1
#-*- coding: utf-8 -*-

from kivy.app import App
from kivy.uix.label import Label

class TestApp(App):
    def build(self):
        return Label(text='Hello World')

TestApp().run()

0

New to Communities?

Join the community