https://github.com/fjebaker/e-bot
A(nother) discord bot, focused on facilitating interactive games.
https://github.com/fjebaker/e-bot
bot discord discord-bot discord-py discordbot games interactive python3
Last synced: about 1 month ago
JSON representation
A(nother) discord bot, focused on facilitating interactive games.
- Host: GitHub
- URL: https://github.com/fjebaker/e-bot
- Owner: fjebaker
- License: gpl-3.0
- Created: 2021-03-13T13:15:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-15T14:11:22.000Z (almost 2 years ago)
- Last Synced: 2025-12-04T22:43:49.832Z (6 months ago)
- Topics: bot, discord, discord-bot, discord-py, discordbot, games, interactive, python3
- Language: Python
- Homepage:
- Size: 217 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# e Discord Bot
*A(nother) discord bot.*
## Overview
EBot is a discord bot for playing games and hosting gimmicks on your server. The games are inspired by popular party games, and currently features:
- *E Lash* : write clever and/or funny answers to silly prompts
- *E Cards* : functionally similar to Cards-against-Humanity but with custom prompts
## Setup
At the moment there is no way to invite this bot to your server unless you are hosting it yourself. For an overview, see [here for creating your own bot api keys](https://dustpancake.github.io/dust-notes/discord/making-bots-python.html#using-the-developer-portal-to-create-a-bot).
First clone
```bash
git clone https://github.com/dustpancake/e-bot && cd e-bot
```
Export your API key
```bash
export DISCORD_TOKEN="PASTE-KEY-HERE"
```
Then install dependencies and run. There are several methods for accomplishing this:
### Using `pipenv`
```bash
pipenv install
pipenv run python src
```
### Using `pip`
```bash
pip install -r requirement.txt
python src
```