Advertisement
Guest User

Untitled

a guest
Feb 15th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. from kivy.app import App
  2. from adv_scan import adv_scan
  3. from kivy.uix.button import Button
  4.  
  5.  
  6. class MyFirstApp(App):
  7. def build(self):
  8. button = Button(on_press=adv_scan)
  9.  
  10. return button
  11. if __name__ == '__main__':
  12. MyFirstApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement