What is the best way to use PyGame (SDL) within a PyGTK application?
I\'m searching for a method that allows me to have a drawing area in the GTK window and at the s
There's a simple solution that might work for you.
Write the PyGTK stuff and PyGame stuff as separate applications. Then from the PyGTK application call the PyGame application, using os.system to call the PyGame application. If you need to share data between the two then either use a database, pipes or IPC.