π‘ Poker Now Log Converter π‘
A command line utility for converting logs from Poker Now games to other formats.
Introduction
Poker Now is a free online client for playing Texas Hold'em, Omaha PL and Omaha PL Hi/Lo poker.
Currently the game logs that can be downloaded from the Poker Now client are not supported by most poker analysis programs such as PokerTracker or Holdem Manager.
Poker Now Log Converter can be used to convert Poker Now logs into other formats for further analysis. (Currently supports only the PokerStars format)
This project was written for my personal use, and is not affiliated, endorsed or sponsored by the Poker Now team.
Features
- Cross platform: Windows, Mac and Linux
- Supports log files from Poker Now version 0.1.53 (06/24/2020) to present.
- Run from the command line, or include as a python library. (Supports >=Python 3.8)
- Outputs log files in PokerStars format. (OpenHH Format on the way)
- Currently supports only Texas Hold'em cash games (Omaha and tournaments on the way)
- Can adjust log output settings such as currency and timezone.
- Use Interactive Alias Mode from the command line to easily rename players seen during poker hands to their known aliases.
Installation
Pip:
1. Install via$ pip install poker-now-log-converter
2. Install from Git:
$ git clone git://github.com/charlestudor/PokerNowLogConverter
$ python setup.py install
3. Use as a script without installing
$ git clone git://github.com/charlestudor/PokerNowLogConverter
python PokerNowLogConverter/src/poker_now_log_converter/main.py
Usage
As a command line tool:
$ python -m poker_now_log_converter -h
usage: __main__.py [-h] [-o OUTPUTDIR] [-H HERONAME] [-a ALIASES] [-c CURRENCY] [-tz TIMEZONE]
[-f FILENAME | -d DIRECTORY] [-q | -i]
optional arguments:
-h, --help show this help message and exit
-o OUTPUTDIR, --outputDir OUTPUTDIR
Specify output directory to save logs to. Defaults to current folder.
-H HERONAME, --heroName HERONAME
Specify the name of the hero. This should match an alias or unique 'name @ id' of the player
who card are being dealt to.
-a ALIASES, --aliases ALIASES
Specify a mapping of player ids to aliases. The format should
be:'player1=alias1,player2=alias2'
-c CURRENCY, --currency CURRENCY
Set currency being used in games. Defaults to USD
-tz TIMEZONE, --timezone TIMEZONE
Set timezone these games were recorded in. Defaults to ET
-f FILENAME, --filename FILENAME
Specify PokerNow Log file to convert.
-d DIRECTORY, --directory DIRECTORY
Specify directory containing PokerNow Log files to convert.
-q, --quiet Run converter tool without outputting to terminal.
-i, --interactive Use interactive mode to set the aliases of players seen in the log
$ python -m poker_now_log_converter -H CT -f ./PNLogExample.txt -c GBP -tz GMT -i -o ./OutputDir
As a library:
$ python
>>> from poker_now_log_converter.main import convert_pokernow_files
>>> convert_pokernow_files(hero_name="CT", input_filename="./PNLogExample.txt")
Contributing
If you find a bug please file an issue. Please upload an example log which is broken to aid in fixing.
License
Special thanks to Samuel SimΓ΅es for creating Poker Now, which is a brilliant poker client.