An open API service indexing awesome lists of open source software.

https://github.com/antogno/easyblackjack

EasyBlackjack is a Single-Deck Blackjack hand generator and calculator.
https://github.com/antogno/easyblackjack

blackjack pypi-package python tool

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

          

# EasyBlackjack


License
Last commit
Last release

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

---

## Installation

Use the package manager [Pip](https://pip.pypa.io/en/stable/) to install EasyBlackjack.

```console
$ pip install EasyBlackjack
```

## Usage

```python
from easyblackjack import EasyBlackjack
```

```python
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
# }
```

```python
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](https://github.com/antogno/easyblackjack/blob/master/LICENSE).

For more information, see the [Creative Commons website](https://creativecommons.org/publicdomain/zero/1.0/).