#! /usr/bin/env python

from magpy.gui.magpy_gui import *

app = wx.App(redirect=False)
frame = MainFrame(None,-1,"")
frame.Show()
app.MainLoop()
