First of all, you should know that it is really just summing up information about what comes into the game and leaves the game. There are no hand stats, nothing about play.
And it works on ring game hand histories. Nothing about tournaments.
That said, here goes.
I have made some updates since posting that based on feedback from naked_eskimo. You can find the latest attached.
It is a Python script. so you will want to install python (written for Python 3, so you will want to install version 3.8) if you do not already have it.
Then grab this file and rename it to processLogMavens.py (it is still just a text file, but the extension indicates it is a python script).
From a command line you basically execute it as follows:
Code:
> python processLogMavens.py <filename>
Where filename is a hand history file. You can list as many files as you like. If you have a whole directory namd HH with files in it, then you can do the following
Code:
> python processLogMavens.py -g HH\*
There are other options, there is a help message if you use the -h switch.
But basically it processes the files and then spits out:
The number of files it processed,
the number of hands in each file,
then for each player found, it sums up their activity,
Finally a total balance which should be zero. I'd be happy to look at files if they generate a non-zero balance.