Skip to main content

A Cribbage scoring tool

Project description

cribbage_scorer

Cribbage scorer is a simple scoring engine for the classic card game.

For details, history and a good summary of the rules of the game see Wikipedia

For instruction on how to play and the rules see the American Cribbage Congress (see link to PDF)

The code for the web server front end that uses this python API can be found on GitHub. Raise a bug here if you find any. This server is also now available as a Docker container.

This package is tested against against Python versions: "3.6", "3.7", "3.8", "3.9", "3.10" on Ubuntu-latest. (But should work on Windows and Mac etc.)

Installation

pip install cribbage-scorer

Run the tests

python -m pytest

Scoring

Examples of how to use the library are below.

In the library and examples, I have used the following conventions:

  • 1 : Ace
  • 2-10 : Non face cards.
  • 11 : Jack
  • 12 : Queen
  • 13 : King

D = Diamonds, H = Hearts, C = Clubs, S = Spades.

Players are listed in the order in which they play. So...

  1. Abi played a 5 of Diamonds,
  2. Bob played a 5 of Spades,
  3. Abi played a 5 of Clubs
  4. Bob played a Jack of Diamonds.

...is represented as:

players = ["Abi", "Bob"]
played_cards = [(5, "D"), (5, "S"), (5, "C"), (11, "D")]

The Cut

The cut_calc_score function is used during 'the cut' stage of the game.

Its a simple function, to assign the 2 points given to the dealer if the pone cuts a Jack as the starter card.

from cribbage_scorer import cribbage_scorer

cut_card = (11, "D")
players = ["Abi", "Bob"]
dealer = "Bob"

scores, msg  = cribbage_scorer.cut_calc_score(cut_card, players, dealer)
print(scores, msg )

Results:

{'Abi': 0, 'Bob': 2} Cut card is a Jack, Dealer scores 2pts.

The Play

The play_calc_score_set function is used during 'the play' stage of the game.

play_calc_score_set handles 3 and 4 players as well as the standard 2 player game. It also understands "Go" calls.

Note: we use the term 'set' here to refer to a subset of the play, where the players are counting from a first played card upto either last card, Go or 31. Once the players have ended a set the cards are put aside and another set begins until all cards are played. The 'play' section of the game usually constitutes multiple sets.

To use, clone from GitHub and run this Python code:

from cribbage_scorer import cribbage_scorer

players = ["Abi", "Bob"]
played_cards = [(5, "D"), (5, "S"), (5, "C"), (11, "D")]

scores, current_count, play_log = cribbage_scorer.play_calc_score_set(played_cards, players)
print(scores, current_count, play_log)

Results:

{'Abi': 8, 'Bob': 3} 25 ['Count: 5, No Points scored, None said Go. ', 'Count: 10, Bob: 2 of a kind (2pts), score so far: 2 ', 'Count: 15, Abi: 15 for 2pts, 3 of a kind (6pts), score so far: 8 ', 'Count: 25, Bob: Last card (1pt), score so far: 3 ']

Behind the scenes this method calls play_score_ongoing for each card placed down. This provides the scoring and message for each card placed. You may choose to use this more internal method, to provide details of each card played, though the full play to that point in time requires play_calc_score_set to be used.

The Show

The show_calc_score function is used during 'the show' stage of the game.

show_calc_score handles Dealer and non dealer hands, for the standard 6 card (4 in your hand, 2 given to the crib) + starter/cut card version of the game.

To use, clone from GitHub and run this Python code:

from cribbage_scorer import cribbage_scorer

starter = (5, "H")
hand = [(5, "D"), (5, "S"), (5, "C"), (11, "D")]
crib = False

score, msg = cribbage_scorer.show_calc_score(starter, hand, crib)
print(score, msg)

Results:

(29, "Four of a kind: 5s (12pts), Made 15 from [(5, 'D'), (11, 'D')] (2pts), Made 15 from [(5, 'S'), (11, 'D')] (2pts), Made 15 from [(5, 'C'), (11, 'D')] (2pts), Made 15 from [(11, 'D'), (5, 'D')] (2pts), Made 15 from [(5, 'D'), (5, 'S'), (5, 'C')] (2pts), Made 15 from [(5, 'D'), (5, 'S'), (5, 'D')] (2pts), Made 15 from [(5, 'D'), (5, 'C'), (5, 'D')] (2pts), Made 15 from [(5, 'S'), (5, 'C'), (5, 'D')] (2pts), One for his nobs (1pt)")

License:

Copyright © 2023 Peter Houghton

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

cribbage_scorer-0.2.4.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

cribbage_scorer-0.2.4-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file cribbage_scorer-0.2.4.tar.gz.

File metadata

  • Download URL: cribbage_scorer-0.2.4.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for cribbage_scorer-0.2.4.tar.gz
Algorithm Hash digest
SHA256 eae67835f70a7b1a7df53c56298b2457dfefeb121f673a8e0337f2e24cc49a75
MD5 c9ee007e38e546785d017058bcf9b5fa
BLAKE2b-256 b363b6b6a1f70f17b95fd60a6c17c57313366f21bd171c68fefcbeb0a5674ceb

See more details on using hashes here.

File details

Details for the file cribbage_scorer-0.2.4-py3-none-any.whl.

File metadata

File hashes

Hashes for cribbage_scorer-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6a979f117511bad7dcfb04511f5ed94b0c2bf4b51a7b0c14946506022ef510fa
MD5 c71df50e30d28a7c6da8228a1778be70
BLAKE2b-256 2245417d9442b900699c6b78ed34b9dea7e325eace1f6977673f7cd9f31fe758

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