bones.py 333 Bytes
#!/usr/bin/env python

import pygtk
pygtk.require("2.0")

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
warnings.filterwarnings("ignore", category=RuntimeWarning,
                        message="tmpnam is a potential security risk to your program")

from bones.gui import editor
editor.MainWindow()