[READ-ONLY] Mirror of https://github.com/shuuji3/wxpython-getting-started.
0

Configure Feed

Select the types of activity you want to include in your feed.

135 B 7 lines
1#!/usr/bin/env python3 2import wx 3 4app = wx.App(False) 5frame = wx.Frame(None, wx.ID_ANY, "Hello world") 6frame.Show(True) 7app.MainLoop()