https://github.com/karmek-k/catsbot
Cat facts Discord bot
https://github.com/karmek-k/catsbot
Last synced: 3 months ago
JSON representation
Cat facts Discord bot
- Host: GitHub
- URL: https://github.com/karmek-k/catsbot
- Owner: karmek-k
- License: mit
- Created: 2019-08-24T14:46:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-28T11:06:25.000Z (almost 5 years ago)
- Last Synced: 2025-01-11T01:51:06.570Z (5 months ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# catsbot
Cat facts Discord botCatsbot uses the [cat-facts](https://github.com/alexwohlbruck/cat-facts) and [TheCatAPI](https://thecatapi.com/).
## Installation
Make sure that you have Python 3.x and pip installed.
```
# clone the repo
git clone https://github.com/karmek-k/catsbot.git# create a virtual environment
python -m venv venv# activate it:
# on Linux (and possibly Mac)
source venv/bin/activate# on Windows
.\env\Scripts\activate# install dependencies
pip install -r requirements.txt# create the .env file from template
mv env_template .env# edit the .env with your favorite text editor
# set API_KEY to your bot token
vim .env
```## Running the bot
```
python main.py
```