Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apollo-roboto/discord-pokeguess
Who’s That Pokemon!
https://github.com/apollo-roboto/discord-pokeguess
discord discord-bot pokemon python
Last synced: 3 months ago
JSON representation
Who’s That Pokemon!
- Host: GitHub
- URL: https://github.com/apollo-roboto/discord-pokeguess
- Owner: Apollo-Roboto
- License: mit
- Created: 2022-12-12T19:34:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-12T04:07:51.000Z (7 months ago)
- Last Synced: 2024-06-12T10:30:47.008Z (7 months ago)
- Topics: discord, discord-bot, pokemon, python
- Language: Python
- Homepage: https://discord.com/api/oauth2/authorize?client_id=1052405591680757961&permissions=2147518464&scope=bot
- Size: 589 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# PokeGuess
Who’s That Pokemon!
Recreate the most nostalgic guessing game into your server. You can also create your own!
[Invite link](https://discord.com/api/oauth2/authorize?client_id=1052405591680757961&permissions=2147518464&scope=bot)
Find it on:
- [discord.bots.gg](https://discord.bots.gg/bots/1052405591680757961)
- [top.gg](https://top.gg/bot/1052405591680757961)
- [discordbotlist.com](https://discordbotlist.com/bots/pokeguess)
- [discords.com](https://discords.com/bots/bot/1052405591680757961)
- [discord.me](https://discord.me/pokeguess)# Running the bot
Create a `.env` file with the following content.
```env
# Discord
DISCORD_BOT_TOKEN=
DISCORD_APPLICATION_ID=
```Install dependencies
```bash
python -m pip install .
```Run the bot.
```bash
python ./src/main.py
```One manual action needs to be done to update the slash commands. As the owner, send a private message with `!sync` to the bot.
## With Docker
```bash
docker-compose build
docker-compose --env-file ./.env up
```