poker
poker copied to clipboard
I'm also having trouble parsing Pokerstars hand history.
I'm also having trouble parsing Pokerstars hand history.
I used the setup from https://poker.readthedocs.io/en/latest/handhistory.html
Raw data is loaded, but the error below is thrown by match.group("ident")
in pokerstars.py. ..and there is this comment there...
self.ident = match.group("ident")
# We cannot use the knowledege of the game type to pick between the blind
# and cash blind captures because a cash game play money blind looks exactly
# like a tournament blind
/home/johnpc/card-parser/py/bin/python3 /home/johnpc/card-parser/py/parse.py
Traceback (most recent call last):
File "/home/johnpc/card-parser/py/parse.py", line 3, in <module>
hh.parse()
File "/home/johnpc/card-parser/py/lib/python3.6/site-packages/poker/room/pokerstars.py", line 174, in parse
self.parse_header()
File "/home/johnpc/card-parser/py/lib/python3.6/site-packages/poker/room/pokerstars.py", line 129, in parse_header
self.ident = match.group("ident")
AttributeError: 'NoneType' object has no attribute 'group'
Originally posted by @Johnpc123 in https://github.com/pokerregion/poker/issues/37#issuecomment-613122241