document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import wx, base64, cStringIO
  2.  
  3. def loadResource(aResource):
  4.     data = base64.b64decode(aResource)
  5.     stream = cStringIO.StringIO(data)
  6.     return wx.BitmapFromImage(wx.ImageFromStream(stream))
');