Skip to main content

Python package for a deck of cards

Project description

Poker Hands from a Deck of Cards

An object model of cards is loaded into a deck, that is shuffled and dealt out as hands is packaged in the python module carddeck.

Carddeck is composed of four python classes: 1) cards, 2) deck, 3) pokerhands, and 4) errors. It is a concept used to exercise python setup, coding, documenting and packaging for pypi distribution.

Install from PyPi

pip install carddeck

Example

The defult of five cards in four hands are dealt after creating a deck, and shuffling it.

from carddeck.deck import deck
myD = deck()
myD.shuffle()
myD.deal()
myD.printHands()
--------
Outout:
['Q♥', '8♥', 'A♥', '2♠', '7♣'] 
['4♣', 'K♣', 'J♦', 'J♠', '4♦'] 
['4♥', '7♦', '9♥', '2♦', '10♠'] 
['2♥', 'Q♣', 'A♦', 'J♣', '5♦'] 

The four hands are evaluated using the PokerHands object.

from carddeck.pokerhands import PokerHands
myPH = PokerHands()
for i in range(0,len(myD.hands)):
    theCards = myD.hands[i]
    theHand = myPH.getHand(theCards)
    print(theCards, theHand)
--------
['Q♥', '8♥', 'A♥', '2♠', '7♣'] High card: A
['4♣', 'K♣', 'J♦', 'J♠', '4♦'] Two pair: 4 and J
['4♥', '7♦', '9♥', '2♦', '10♠'] High card: 10
['2♥', 'Q♣', 'A♦', 'J♣', '5♦'] High card: A

The next deal from the remaining cards can then be evaluated.

myD.deal()
for i in range(0,len(myD.hands)):
    theCards = myD.hands[i]
    theHand = myPH.getHand(theCards)
    print(theCards, theHand)
--------
['Q♥', '8♥', 'A♥', '2♠', '7♣'] High card: A
['4♣', 'K♣', 'J♦', 'J♠', '4♦'] Two pair: 4 and J
['4♥', '7♦', '9♥', '2♦', '10♠'] High card: 10
['2♥', 'Q♣', 'A♦', 'J♣', '5♦'] High card: A

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

carddeck-0.1.3-py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 3

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