============ Usage ============ To use ``wx_icons_humanity`` in your application: .. code-block:: python from wx_icons_humanity import wxHumanityIconTheme class MyApp(wx.App): def OnInit(self): wx.ArtProvider.Push(wxHumanityIconTheme()) self.frame = TestFrame(None, wx.ID_ANY) self.SetTopWindow(self.frame) self.frame.Show() return True And then the icons can be accessed through wx.ArtProvider: .. code-block:: python wx.ArtProvider.GetBitmap('document-new', wx.ART_OTHER, wx.Size(48, 48)) Any `FreeDesktop Icon Theme Specification `_ name can be used. Currently the `Client ID` is not used, so just pass `wx.ART_OTHER`.