Skip to content

EasyBlackjack is a Single-Deck Blackjack hand generator and calculator.

License

Notifications You must be signed in to change notification settings

antogno/easyblackjack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EasyBlackjack

License Last commit Last release

EasyBlackjack is a Single-Deck Blackjack hand generator and calculator.


Installation

Use the package manager Pip to install EasyBlackjack.

$ pip install EasyBlackjack

Usage

from easyblackjack import EasyBlackjack
EasyBlackjack.generate_cards()
# Returns two random cards with their value.
# For example:
# {
#     'card_one': {
#         'value': '10',
#         'suit': 'H'
#     },
#     'card_two': {
#         'value': '4',
#         'suit': 'S'
#     },
#     'points': 14
# }
EasyBlackjack.calculate_points(['A', '6', '3'])
# Returns the hand value.
# For example:
# 20

License

EasyBlackjack is licensed under the terms of the Creative Commons Zero v1.0 Universal license.

For more information, see the Creative Commons website.