Metadata-Version: 2.1
Name: TicTacToe3
Version: 0.0.9
Summary: A game of Tic Tac Toe, that you may RARELY WIN
Home-page: UNKNOWN
Author: Programmin-in-Python (MK)
Author-email: <kalanithi6014@gmail.com>
License: UNKNOWN
Project-URL: GitHub, https://github.com/Programmin-in-Python/TicTacToe-cli
Project-URL: Release Notes, https://github.com/Programmin-in-Python/TicTacToe-cli/releases/tag/v0.0.9
Project-URL: Home Page, https://github.com/Programmin-in-Python/TicTacToe-cli
Keywords: python3,Tic Tac Toe,Tic-Tac-Toe,tic tac toe,tic-tac-toe,tic-tac-toe-cli,probability
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Education
Classifier: Topic :: Games/Entertainment :: Board Games
Classifier: Topic :: Games/Entertainment :: Puzzle Games
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: PyGithub

![TicTacToe2](https://user-images.githubusercontent.com/74541319/122644706-48834880-d134-11eb-8a38-83650e354760.jpeg)

![TicTacToe1](https://user-images.githubusercontent.com/74541319/122644722-56d16480-d134-11eb-9786-f96ee904a36d.png)

For detailed Information, Issues, Comments, Please go to [GitHub](https://github.com/Programmin-in-Python/TicTacToe-cli)

## Installation
***Please Note :- Requires Python Version 3.x***

**If there are 2 or more versions of Python installed in your system (which mostly occurs in UNIX/Linux systems) then please run any one of the commands in the BASH/ZSH Shell \:-**
```bash
pip3 install TicTacToe3
```
```bash
python3 -m pip install TicTacToe3
```

**If there is only Python 3.x installed in your system like in Windows systems then please run any one of commands in the Command Prompt \:-**
```console
pip install TicTacToe3
```
```console
python -m pip install TicTacToe3
```

## Quick Guide
***Please Read till the END***

- Import it using `import TicTacToe3 as T3`.

- Play the Game using `T3.play()`.

	- Everytime the Game Finishes it records the Output and computes the **probability** in Real-time.

		- The computed Probability is shown at the _end of every Game_.

		- To explicitly view the stats use `T3.showProbability()`.

- It _automatically_ creates a **log** of the Game that you played, in case of _future reference_.

	- The log is stored in the **Home Directory**.

