PROJET AUTOBLOG


Shaarli - Liens en vrac de Tiger-222

Archivé

Site original : Shaarli - Liens en vrac de Tiger-222

⇐ retour index

Kivy: Crossplatform Framework for NUI

lundi 28 octobre 2013 à 23:39
Un bibliothèque python pour créer des interfaces graphique facilement et rapidement.

Je n'ai pas testé, mais voici le Hello World le plus simple du monde des GUI :
from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
   def build(self):
       return Button(text='Hello World')
TestApp().run()
(Permalink)