#!/usr/bin/env python # -*- coding: utf8 -*- # Tempo01.py import wx import Tempo02 class SimpleToolbar(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__init__(self, parent, id, title, size=(300, 200)) Tempo02.MaBarreOutils(self) self.Centre() self.Show(True) app = wx.App() SimpleToolbar(None, -1, 'MaBarreOutils') app.MainLoop()