This repository has been archived on 2024-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
Netflix-4K-Script/netflix_gui.py
widevinedump 333e2446f5 New
2021-12-23 15:57:57 +05:30

25 lines
465 B
Python

# -*- coding: iso-8859-1 -*-
import wx
#import xenforo
#provider = wx.SimpleHelpProvider()
#wx.HelpProvider_Set(provider)
import MyFrame
class App(wx.App):
def OnInit(self):
wx.InitAllImageHandlers()
self.main = MyFrame.MyFrame(None)
self.main.Show()
self.SetTopWindow(self.main)
return 1
def main():
#application = App(0)
application = App()
application.MainLoop()
if __name__ == '__main__':
main()