Advertisement
Guest User

Untitled

a guest
Jun 29th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import xbmcaddon
  2. import landingpage
  3. from landingpage import landingrun
  4.  
  5. class MyAddon(xbmcaddon.Addon):
  6. def __init__(self):
  7. xbmcaddon.Addon.__init__(self)
  8.  
  9. def defaultrun(self):
  10. print("Running MyAddon")
  11. # Run the landing page window
  12. landingrun()
  13.  
  14. #initialize instance of MyAddon as addon
  15. addon = MyAddon()
  16.  
  17. addon.defaultrun()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement