I am trying to implement a game of tetris in python and am wondering which of wxpython or pygame is better to go with. Any ideas would be appreciated.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
wxpython is primarily used for developing window-based user interfaces. Putting a game together using it would be pretty hackish, I think. Pygame is, of course, specifically made for game creation, so it will be a better bet.
Some other projects you might want to look into are: http://arcticpaint.com/projects/rabbyt/
and: http://www.pyglet.org/ — I personally found Pyglet to be a better library than Pygame for doing small game prototypes.