Metadata-Version: 2.4
Name: card_shoe
Version: 0.0.4
Summary: A Python card shoe library for creating card shoes with multiple decks for blackjack and casino usage.
Author-email: Peter Dang <peterhdangg@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/peterdang1502/card_shoe_lib
Project-URL: Issues, https://github.com/peterdang1502/card_shoe_lib/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: standard_playing_card
Dynamic: license-file

A Python card shoe library for creating card shoes with multiple decks for blackjack and casino usage.

Example usage:

```
from card_shoe import CardShoe

shoe = CardShoe()  # 1 deck
print(shoe.draw_card())
# will print a random card drawn
print(shoe.draw_card())
# will print a different card drawn

shoe = CardShoe(7)  # 7 decks for blackjack
shoe.shuffle()
print(shoe.draw_card())
# will print a random card
print(shoe.draw_card())
# can print the same card due to multiple decks
```
