1

For 2D game development in Python there is a library or binding that has a serious and sustainable development, is pythonic and has a simple and complete design of classes for application development.

I've learned Pygame, Pyglet, PySFML and cocos2d. But I think that, in some cases, can be very specific limiting the degree of abstraction that gives us a high level language like Python.

For example by the two ways of load an image on Pyglet:

pyglet.resource.image()

or

pyglet.image.load()
CodeSmile
  • 64,284
  • 20
  • 132
  • 217
  • You're looking for something "serious", "sustainable", "pythonic", "simple", "complete", and meanwhile not "very specific" or "limiting the degree of abstraction". What you are asking is pretty subjective. What might seem "simple" and "pythonic" to one person might seem "limiting" or "overly specific" to another. – Mark Hildreth Jul 26 '12 at 15:17

1 Answers1

0

There is a big list maintained at python wiki, probably you should check Python-Ogre.

abbot
  • 27,408
  • 6
  • 54
  • 57