Skip to main content

A pure python poker hand evaluator for 5, 6, 7 cards

Project description

In pure python

27 January 2011, Alvin Liang

Introduction

This is a pure python library to calculate the rank of the best poker hand out of 5, 6, or 7 cards. It does not run the board for you, or calculate winning percentage, EV, or anything like that. But if you give it two hands and the same board, you will be able to tell which hand wins.

It is nowhere near as fast as pypoker-eval, but it works if you can’t use C for some reason (the early stages of the first MIT pokerbot competition come to mind). The core algorithm is slower, and you obviously don’t have the speed of C.

Quick Start

from pokereval.card import Card
from pokereval.hand_evaluator import HandEvaluator

hole = [Card(2, 1), Card(2, 2)]
board = []
score = HandEvaluator.evaluate_hand(hole, board)

Rank is 2-14 representing 2-A, while suit is 1-4 representing spades, hearts, diamonds, clubs.

The Card constructor accepts two arguments, rank, and suit.

aceOfSpades = Card(14, 1)
twoOfDiamonds = Card(2, 3)

Algorithm

The algorithm for 5 cards is just a port of the algorithm that used to be at the following URL. (I purposely broke the link because it now hosts a malware site.) httx://wwx.suffecool.net/poker/evaluator.html

I came up with the 6 and 7 card evaluators myself, using a very similar card representation and applying some of the same ideas with prime numbers. The idea was to strike a balance between lookup table size and speed.

Also, I haven’t included the code I used to generate the lookup tables, but you should be able to do that with a simpler, slower algorithm. Maybe I’ll add that later as well.

There is also a two-card ranking/percentile algorithm that is unrelated to the rest and may get cleaned up later. We used it at one point for some pre-flop evaluation. Credit to Zach Wissner-Gross for developing this.

Documentation is sparse at the moment, sorry about that, and obviously I did not really bother to package it or clean it up. I may or may not work on this in the future. Basically, I made it, so why not release it?

Contributors

  • Me! Go me!

  • Zach Wissner-Gross (2-card algorithm)

  • arslr (Fixes for other Python versions)

  • Jim Kelly (Help with packaging, additional documentation)

  • hwmrocker (Improvements to Card constructor, Python 3 compatibility)

  • radekj (Tests, Python 3 compatibility)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pokereval-0.2.0.tar.gz (568.8 kB view details)

Uploaded Source

Built Distribution

pokereval-0.2.0-py3-none-any.whl (573.8 kB view details)

Uploaded Python 3

File details

Details for the file pokereval-0.2.0.tar.gz.

File metadata

  • Download URL: pokereval-0.2.0.tar.gz
  • Upload date:
  • Size: 568.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for pokereval-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b85ab5cc10f9392da474b5538803ea1a89ff41a02c231f498497b3bba95f2e3a
MD5 5320a1d685ab226a3a1af118ed054d64
BLAKE2b-256 ed4f987a9edbad5b35eb7a6eede7834e39c4605e2f29bcae0e212545fbcb8a90

See more details on using hashes here.

File details

Details for the file pokereval-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pokereval-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 573.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5

File hashes

Hashes for pokereval-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cbcdac21a2cbd329998c2ab39cd2e30ad4ec4215c1bf7e0ff2ff017c076472f4
MD5 cbe68a5fb778129955a054a1b62a677c
BLAKE2b-256 305ab20017b8963dcc1e8a38cd74a832266ed6ea0f215d3903218358dfcc0327

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page