Created
July 11, 2012 22:30
-
-
Save tshirtman/3094183 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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