Metadata-Version: 2.1
Name: titato
Version: 1.0.1
Summary: Library of the game tic-tac-toe + AI. Experimental functionality with dynamic parameters of the game field
Project-URL: Documentation, https://github.com/Steppe-Mammoth/titato/tree/dev-1.x#titato
Project-URL: Source, https://github.com/Steppe-Mammoth/titato/tree/dev-1.x
Project-URL: Issues, https://github.com/Steppe-Mammoth/titato/issues
Author-email: Steppe_Mammoth <qwqwqww404@gmail.com>
License-File: LICENSE.md
Keywords: api,framework,game,tic-tac-toe
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Games/Entertainment
Requires-Python: >=3.10
Requires-Dist: prettytable~=3.6.0
Description-Content-Type: text/markdown

# titato
___Library of the game tic-tac-toe + AI.___ _Experimental functionality with dynamic parameters of the game field_

___

## Features:
+ **Unlimited number of players in one game**
+ **Creating a playing field of any size**:
+ + *With size parameters required: **row**, **column** and **winning combination***
+ **Artificial Intelligence algorithm works with any game settings**

___

  
```python
# Visualization of dynamic settings of the playing field
                                                                               10 x 10  player vs player vs player
                                                                        +-----+---+---+---+---+---+---+---+---+---+---+
                                   6 x 6  player vs player              | ↓/→ | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
                               +-----+---+---+---+---+---+---+          +-----+---+---+---+---+---+---+---+---+---+---+
 3 x 3 player vs player        | ↓/→ | 0 | 1 | 2 | 3 | 4 | 5 |          |  0: | * | * | * | * | * | * | * | * | * | * |
   +-----+---+---+---+         +-----+---+---+---+---+---+---+          |  1: | X | * | * | * | * | * | * | O | * | * |
   | ↓/→ | 0 | 1 | 2 |         |  0: | * | * | * | * | X | * |          |  2: | * | X | * | * | * | * | O | * | * | * |
   +-----+---+---+---+         |  1: | * | * | * | * | O | * |          |  3: | * | * | P | * | * | P | * | * | * | * |
   |  0: | O | * | X |         |  2: | * | * | * | * | O | * |          |  4: | * | * | * | X | O | * | * | * | * | * |
   |  1: | * | O | * |         |  3: | X | X | X | X | O | X |          |  5: | * | * | * | O | X | * | * | * | * | * |
   |  2: | X | * | O |         |  4: | * | * | * | * | O | * |          |  6: | * | * | O | * | * | X | * | * | * | * |
   +-----+---+---+---+         |  5: | * | * | * | * | O | * |          |  7: | * | O | * | * | * | * | X | * | O | * |
                               +-----+---+---+---+---+---+---+          |  8: | O | * | * | * | * | * | * | * | * | * |
                                                                        |  9: | * | * | X | P | P | P | P | O | P | P |
                                                                        +-----+---+---+---+---+---+---+---+---+---+---+
```


___
___


## ***Documentation***

[*Documentation on GitHub*](https://github.com/Steppe-Mammoth/titato/tree/dev-1.x#titato)