Skip to content

Instantly share code, notes, and snippets.

Created November 17, 2012 11:18
Show Gist options
  • Save anonymous/4095031 to your computer and use it in GitHub Desktop.
Save anonymous/4095031 to your computer and use it in GitHub Desktop.
#:kivy 1.0
TestApp:
Image:
source: 'moonphase21.gif'
id: img
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