Metadata-Version: 2.1
Name: tennis_big3
Version: 0.1.1
Summary: Library which shows stats about the Big Three era in Tennis (2000's, 2010's)
Home-page: https://es.wikipedia.org/wiki/Big_Three_(tenis)
Author: Javier Gutiérrez
Description-Content-Type: text/markdown

# Big Three Library

A library with the stats of Grand Slams earned by the Big Three:

    - Rafa Nadal (Spain) Grand Slams: 22
    - Roger Federer (Swizterland) Grand Slams: 20
    - Novak Djokovic (Serbia) Grand Slams: 24


## Installation

Install the package using `pip`:

```bash
pip3 install tennis_big3
```

## List the Big-3

```python3
from tennis_big3 import list_players

list_players()
```

You can do it by this other way:

```python3
from tennis_big3.players import big_three

for player in big_three:
    print(player)
```

## Search player by the name

If you want to search the stat of a single player:

```python3
from tennis_big3 import search_player

search_player("Roger Federer")
```

## Show total of GS

```python3
from tennis_big3 import total_gs

total_gs()
```
