Metadata-Version: 2.1
Name: python-games
Version: 1.0.1
Summary: A python package with different python games
Home-page: https://github.com/kevys/python-games
Author: Kevys
License: MIT
Project-URL: Issues, https://github.com/kevys/python-games/issues
Keywords: python
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE

# python-games
![GitHub](https://img.shields.io/pypi/v/python-games.svg?label=version&style=flat-square)
![Dowloads](https://img.shields.io/pypi/dm/python-games?color=blue)

## Installing

```
# Linux/macOS
python3 -m pip install -U python-games

# Windows
py -3 -m pip install -U python-games

# Github
pip install git+https://github.com/kevys/python-games.git@main
```

## Quick Example

```
import games

c = input("Choose rock, paper or scissor > ")

output = games.rps(c)

if output[2] is False:
    print(f'Loser, You picked {output[0]}, AI picked {output[1]}')
elif output[2] is True:
    print(f'Winner, You picked {output[0]}, AI picked {output[1]}')
```

