Skip to content

Instantly share code, notes, and snippets.

@tshirtman
Forked from anonymous/main.kv
Created November 17, 2012 11:19
Show Gist options
  • Save tshirtman/4095042 to your computer and use it in GitHub Desktop.
Save tshirtman/4095042 to your computer and use it in GitHub Desktop.
from kivy.app import App
from kivy.uix.image import Image
class MainApp(App):
def build(self):
return Image(source='moonphase21.gif')
if __name__ == '__main__':
MainApp().run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment