pokerregion / poker

Poker framework for Python
https://poker.readthedocs.org
MIT License
333 stars 136 forks source link

Hand History Format? #11

Closed pareshchouhan closed 9 years ago

pareshchouhan commented 9 years ago

What is the format of hand history parsable by this API? can you link me to the docs if there's any ? other than http://en.wikipedia.org/wiki/Hand_history

kissgyorgy commented 9 years ago

Hi! You can find it in the tests, here: https://github.com/pokerregion/poker/blob/master/tests/handhistory/ftp_hands.py https://github.com/pokerregion/poker/blob/master/tests/handhistory/pkr_hands.py https://github.com/pokerregion/poker/blob/master/tests/handhistory/stars_hands.py It seemed a good idea to put those in .py files like this :smile: Basically current PokerStars, Full Tilt Poker and PKR handhistories should be recognized. Not every type though. Also I mentioned this in the documentation: https://poker.readthedocs.org/en/latest/handhistory.html

pareshchouhan commented 9 years ago

thanks :3