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
Import the specific game class
from the library
from discord_games import Wordle
Initialize the game class (with the appropriate arguments, normally none but varies from game to game)
game = Wordle()
Call the start method (with the appropriate arguments) to start the game
await game.start(ctx)
(ctx is always a required argument, rest are optional)refer to the source for more info on the arguments you could pass
Coming soon...!