Reputation: 1242
I am going to build a simple monopoly game in realtime. Game constraints:
So, I've decided to use SockJS as realtime(comet) server. Could you advice me some py game framework pluggable with SockJS or it is better to right game engine from scratch ? Examples are appreciated!
Upvotes: 0
Views: 1227
Reputation: 1210
I think it's better to write own one, because most of solutions are simple, and it's better to build something specific based on https://github.com/mrjoes/sockjs-tornado/ The combination of Tornado + SockJS + Redis could be your way
Upvotes: 2