views:

3285

answers:

4

I've had some experience with Pygame, but there seems to be a lot of buzz around Pyglet these days.

How do these two libraries compare? What would be the advantage of using one over the other, both in features and ease of use?

Finally, would you say that one is more Pythonic than the other?

+10  A: 

Pygame: LGPL license

Pyglet: BSD license

Pygame relies on SDL libraries heavily

Pyglet is a pure python library with fewer dependencies, I think it requires better understanding of OpenGL

Pygame is around here for a long time, a lot of people used it

Pyglet is a new lib

Pygame is geared towards game development (cursors, sprites, joystick/gamepad support)

Pyglet is more general purpose (thought it has a Sprite class)

I found also this discussion on piglet-users mailing list: from pygame+pyopengl to pyglet

Disclaimer: I did not use either yet, only tried some tutorials ;-)

jetxee
Pyglet must depend on OpenGL though, just the way Pygame depends on SFL
Eli Bendersky
True, but as I understand it, it accesses GL calls through the operating system API, while SDL requires installation in most cases. To be fair, for fancier A/V support, Pyglet requires AVbin.
David Eyk
+9  A: 

I was considering both Pygame and Pyglet for a small 2D shooter, and after looking at source code and some tutorials went with Pyglet. I was very happy with the results.

Pyglet worked immediately and was enjoyable to work with, and conceptually very clean. It certainly had a Pythonic feel to me: you could get a straightforward and readable example going very quickly, and it uses decorators to good effect for event handling. It also didn't force a particular program structure, which made it easy for me to mix in the physics modelling of Pymunk (http://code.google.com/p/pymunk/).

While it is based on OpenGL and you can use those features for special effects, I was able to do just fine without any knowledge of them.

It also works well with py2exe and py2app, which is important because a lot of people do not have a Python interpreter installed.

On the downside, there is less information about it on the web because it is newer, as well as fewer sample games to look at.

Also, it changed quite a bit from previous versions, so some of the tutorials which are there are now out of date (there is the "new style event loop" and the Sprite class as major additions.)

I would recommend downloading the examples (there is a nice Asteroids clone called Astraea included) and seeing if you like the style.

Kiv
+3  A: 

I would like to add that there is a fast sprite library Rabbyt which may be a good complement for Pyglet.

jetxee
Thanks. I'll check that out.
nakedfanatic
A: 

Having looked at both pygame and pyglet I found pyglet easier to pick up and was able to write a simple breakout style game within a few days.

Alastair