Discord-Games
This is a simple package for implementing games into your discord.py bot
You can install it with:
$ 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
- Ex:
-
Initialize the game class (with the appropriate arguments, normally none but varies from game to game)
- Ex:
game = Wordle()
- Ex:
-
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)
- Ex:
-
refer to the source for more info on the arguments you could pass
-
here
read the examples
Documentation
Coming soon...!