Metadata-Version: 2.4
Name: xtreyspf
Version: 0.1.2
Summary: An extended add-on for pre-flop card evaluation.
Author: TheCursedOne
Project-URL: Homepage, https://github.com/bingchiliingsacker-dot/XtreysPF
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

## Installation

To install **XtreysPF**, open your terminal and run:

```bash
pip install git+https://github.com/bingchiliingsacker-dot/XtreysPF.git
```

Note: If you run into any issues installing or using XtreysPF, feel free to open a ticket on the Issues tab!


## Usage

XtreysPF has one goal only, and its to rank the strength of the hole cards.
Cards are ranked from 1 to 91 with 'A-A' or pocket Ace's being the strongest and a '2-7' being the weakest pair

Here is a quick test to see if xtreyspf is working:

```python
from treys import Deck
import xtreyspf as pf

d = Deck()
cards = d.draw(2)

rank = pf.preflop_eval(cards)
print(f"Pre-flop hand rank: {rank}")
```
