Python Game Programming
Solution 1:
PyGame. It's also a framework designed specifically for creating games in Python.
Invent Your Own Computer Games with Python is a great online book on the subject.
Solution 2:
- The pygame wiki has a page with tutorials: http://www.pygame.org/wiki/tutorials
I've made a game after sorta paging through tutorials and docs, though obviously pygame is only one (though a pretty popular) game library for python
This book is very highly rated (though I've not read it myself, others have pointed me there): http://www.amazon.com/Game-Programming-Python-Development/dp/1584502584
Finally, simply googling "python game framework" gets you pretty far, and lets you evaluate your options. Pygame is a great starting point, as a very generalist approach which handles input,drawing, and sound all in one library, but many frameworks exist for more specific tasks as well.
Post a Comment for "Python Game Programming"