Metadata-Version: 2.4
Name: discord_games
Version: 1.12.1
Summary: A library to help users easily implement games within their discord bot
Author: Tom-the-Bomb
License-Expression: MIT
Project-URL: Repository, https://github.com/Tom-the-Bomb/Discord-Games
Project-URL: Issue tracker, https://github.com/Tom-the-Bomb/Discord-Games/issues
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: akinator>=2.0.2
Requires-Dist: chess>=1.0.0
Requires-Dist: discord-py>=2.0.0
Requires-Dist: english-words>=2.0.0
Requires-Dist: pillow>=9.0.0
Requires-Dist: typing-extensions>=4.0.0
Dynamic: license-file

# Discord-Games

This is a simple package for implementing **games** into your [discord.py](https://github.com/Rapptz/discord.py) bot<br/>
You can install it with:
```bash
$ py -m pip install git+https://github.com/Tom-the-Bomb/Discord-Games.git
```
---
## The basic usage of the library goes like this
- Import the specific game `class` from the library
    - Ex: `from discord_games import Wordle`
- Initialize the game class (with the appropriate arguments, normally none but varies from game to game)
    - Ex: `game = Wordle()`
- Call the start method (with the appropriate arguments) to start the game
    - Ex: `await game.start(ctx)` (ctx is always a required argument, rest are optional)<br/>
- refer to the source for more info on the arguments you *could* pass

- #### read the examples [here](https://github.com/Tom-the-Bomb/Discord-Games/blob/master/examples/examples.py)<br/>
---
### Documentation
Coming soon...!
