An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# e Discord Bot


tests
docs
pull requests

*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
```