Skip to main content

A Discord bot integration framework for Reddit moderation.

Project description

Banhammer.py

PyPi version PyPi License PyPi Python Versions Banhammer Discord GitHub Issues GitHub Stars GitHub Contributors Subreddit Subscribers

Banhammer.py is a framework that allows you to build your very own Banhammer! Banhammer pursues the goal of bringing subreddit moderation to your very own Discord server, by streaming any and all moderatable items to Discord channels and allowing users to then moderate the subreddit through a joint bot account using Reactions, there's no need to use Reddit's moderation interface anymore!

Table of Contents

Features

  • Streaming new and reported posts to your Discord bot.
  • Adding and handling reactions.
  • Fetching reactions from subreddit wiki.
  • Changing bot presence on Discord.
  • Generating embeds and messages for items and actions.

Installation

Banhammer.py requires a release of Python 3.6 or newer. You can install Banhammer.py via pip:

pip install banhammer.py

Quick Example

Once the dependencies have been installed, the bot can be created. For that the general structure of a Discord Client or Bot (if commands are of importance use Bot) needs to be created and then Banhammer initialized as well as ran.

import apraw
import discord
import banhammer
from banhammer.models import Subreddit
from discord.ext import commands

bot = commands.Bot(command_prefix='>')
reddit = apraw.Reddit(client_id=CLIENT_ID, client_secret=CLIENT_SECRET,
                     password=PASSWORD, username=USERNAME, user_agent=USER_AGENT)
bh = banhammer.Banhammer(reddit, bot=bot)

@bot.event
async def on_command_error(ctx, error):
    print(error)

@bot.event
async def on_ready():
    print(str(bot.user) + ' is running.')
    sub = Subreddit(bh, SUBNAME)
    await sub.load_reactions()
    await bh.add_subreddits(sub)
    bh.run()

@bh.new()
async def handle_new(p):
    msg = await bot.get_channel(CHANNEL_ID).send(embed=await p.get_embed())
    await p.add_reactions(m)

bot.run(TOKEN)

bh.run() must be called so that Banhammer can start the internal event loop. More examples can be found in the (examples)[examples] folder or in the Banhacker as well as the D6B GitHub repositories that both show different (and more complex) implementations of the framework.

Contributing

Banhammer.py is open-source! That means we'd love to see your contributions and hopefully be able to accept them in the next release. If you want to become a contributor, try to follow these rules to keep the code clean:

  • Follow Python naming conventions. (eg. variable_name and ClassName)
  • Only use async where necessary.
  • Use the OOP approach; create classes when it makes sense.
  • Document as much as you can, preferably with inline comments.
  • Use the NumPyDoc docstring format.
  • Store data in JSON, INI or YAML format to eliminate dependencies for other formats.

Roadmap

  • Returning actions performed.
  • Improved support for modmail.
  • MessageBuilder object to create custom messages/embeds.
  • save() function for Subreddit object.
  • Support for newer PRAW features (such as locking comments).
  • Validation of inputs.
  • Better exception handling and outputs.
  • Support for variable function arguments.

Links

License

Banhammer.py's source is provided under GPLv3.

Copyright ©, RaviAnand Mohabir

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Banhammer.py-2.5.4b0.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

Banhammer.py-2.5.4b0-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file Banhammer.py-2.5.4b0.tar.gz.

File metadata

  • Download URL: Banhammer.py-2.5.4b0.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for Banhammer.py-2.5.4b0.tar.gz
Algorithm Hash digest
SHA256 c3385450f79da18c0acfb496a33dd0434d752a7df4effabacae560afbac35164
MD5 08420e90a977dd2900206a7e7b82ac69
BLAKE2b-256 addddb024c6aaed767780cd0be6e04261f9295e3100e6d4ff7524d05167577c4

See more details on using hashes here.

File details

Details for the file Banhammer.py-2.5.4b0-py3-none-any.whl.

File metadata

  • Download URL: Banhammer.py-2.5.4b0-py3-none-any.whl
  • Upload date:
  • Size: 34.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for Banhammer.py-2.5.4b0-py3-none-any.whl
Algorithm Hash digest
SHA256 1f158ed35148a1e3bc6b6ad96e0f302eda984f2bee195558102fb49d84ebf441
MD5 0ecd37b7def01f4968fc2d2f8087dbeb
BLAKE2b-256 c0e2917fcfa51d4e023a508a1db24ccf477deeacfcff6ffdfe77c09da87c9b57

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page