Dankbot
For posting dank memes to Slack chat
Install / Use
/learn @DankCity/DankbotREADME
Dankbot
|PyPIVersion| |CircleCI| |CoverageStatus| |CodeHealth| |StoriesInReady|
.. |PyPIVersion| image:: https://badge.fury.io/py/dankbot.svg :target: https://badge.fury.io/py/dankbot .. |CircleCI| image:: https://circleci.com/gh/DankCity/dankbot/tree/master.svg?style=svg :target: https://circleci.com/gh/DankCity/dankbot/tree/master .. |CoverageStatus| image:: https://coveralls.io/repos/github/DankCity/dankbot/badge.svg?branch=master :target: https://coveralls.io/github/DankCity/dankbot?branch=master .. |CodeHealth| image:: https://landscape.io/github/DankCity/dankbot/master/landscape.svg?style=flat :target: https://landscape.io/github/DankCity/dankbot/master :alt: Code Health .. |StoriesInReady| image:: https://badge.waffle.io/DankCity/dankbot.svg?label=ready&title=Ready :target: http://waffle.io/DankCity/dankbot
A Slack Bot that scrapes memes from subreddits and posts them to slack
Steps to run
Clone into directory
::
cd /opt
sudo mkdir dankbot && sudo chown <user>:<user> dankbot
git clone git@github.com:DankCity/dankbot.git
Setup INI file
::
cd /opt/dankbot
cp dankbot/dankbot.sample.ini dankbot/dankbot.ini
Edit the INI file to fill in the missing token, username, and password fields: ::
(.venv35)➜ dankbot git:(master) ✗ cat dankbot/dankbot.sample.ini
[dankbot]
# Leave directory blank and dankbot will determine the best place to
# log to your platform
log_to_file: true
directory:
file_name: dankbot.log
backups: 5
max_bytes: 1000000
[slack]
# Follow instructions at https://my.slack.com/services/new/bot
token: <put here>
channel: #random
[reddit]
# r/dankmemes, r/funnygifs, etc
subreddits: dankmemes, funnygifs
[imgur]
# Register at https://api.imgur.com/oauth2/addclient
# Select Anonymous usage
client_id: <your client ID>
client_secret: <your client secret>
[misc]
include_nsfw: false
max_memes: 3
Create and activate a virtual environment
::
cd /opt/dankbot
virtualenv --python=`which python3` env
source env/bin/activate
Install the python package
::
cd /opt/dankbot
source env/bin/activate
pip install -e .
Add an entry to your crontab
Edit the crontab with your favorite editor ::
sudo vi /etc/crontab
And add an entry like so: ::
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the 'crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow usernamecommand
*/5 09-17 * * 1-5 root cd /opt/dankbot && source env/bin/activate && dankbot .
This will run dankbot once every 5 minutes, Monday to Friday, between 9 AM and 5 PM CST
Related Skills
imsg
351.2kiMessage/SMS CLI for listing chats, history, and sending messages via Messages.app.
node-connect
351.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
slack
351.2kUse when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
taskflow-inbox-triage
351.2kname: taskflow-inbox-triage description: Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some w
