Select the types of activity you want to include in your feed.
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()