Skip to content

Instantly share code, notes, and snippets.

@tshirtman
Created July 11, 2012 22:30
Show Gist options
  • Select an option

  • Save tshirtman/3094183 to your computer and use it in GitHub Desktop.

Select an option

Save tshirtman/3094183 to your computer and use it in GitHub Desktop.
import kivy
kivy.require('1.0.7')
from kivy.app import App
from kivy.factory import Factory
#Factory.register("Bejoto", Bejoto)
class BejotoApp(App):
icon = 'icon.png'
title = 'Bejoto Coffe System 0.1 beta'
def build(self):
return Factory.Button()
if __name__ == '__main__':
BejotoApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment