All Projects → Skelmis → Discord-Anti-Spam

Skelmis / Discord-Anti-Spam

Licence: MIT License
Ever wanted a bot to automatically deal with spammers? This is your Python library for it.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Discord-Anti-Spam

SataniaBot
The most devilish bot for Discord!
Stars: ✭ 20 (-56.52%)
Mutual labels:  discord-bot, discord-api
calamity
A library for writing discord bots in haskell
Stars: ✭ 77 (+67.39%)
Mutual labels:  discord-bot, discord-api
delet
[DEPRECATED - see README.md] a Discord bot made using Discord.js
Stars: ✭ 46 (+0%)
Mutual labels:  discord-bot, discord-api
hikari-lightbulb
The official unofficial command handler for the Python discord API wrapper library, Hikari.
Stars: ✭ 152 (+230.43%)
Mutual labels:  discord-bot, discord-api
corgi
A Discord bot made with JDA, Corgi is a server administration bot along with a few other cool features
Stars: ✭ 15 (-67.39%)
Mutual labels:  discord-bot, discord-api
Ellie
A bot for the Discord chat platform written in Rust with the Serenity library.
Stars: ✭ 14 (-69.57%)
Mutual labels:  discord-bot, discord-api
discord-api-types
Up to date Discord API Typings, versioned by the API version
Stars: ✭ 270 (+486.96%)
Mutual labels:  discord-bot, discord-api
nyxx
Wrapper around Discord API for Dart
Stars: ✭ 217 (+371.74%)
Mutual labels:  discord-bot, discord-api
Discord-Bot-TypeScript-Template
Discord bot - A discord.js bot template written with TypeScript.
Stars: ✭ 86 (+86.96%)
Mutual labels:  discord-bot, discord-api
Axley
A simple multi-purpose Discord bot being made using Discord.py API wrapper..
Stars: ✭ 16 (-65.22%)
Mutual labels:  discord-bot, discord-api
mass-dm-discord
A MassDM selfbot which is working in 2021. Only for educational purposes 🥱🚀
Stars: ✭ 87 (+89.13%)
Mutual labels:  discord-bot, discord-api
miso-bot
Discord bot with too many features
Stars: ✭ 41 (-10.87%)
Mutual labels:  discord-bot, discord-api
Commando
[DEPRECATED] ⚫ Commando Discord bot built on discord.js-commando.
Stars: ✭ 78 (+69.57%)
Mutual labels:  discord-bot, discord-api
DiscordStorage
Use Discord servers to store files
Stars: ✭ 64 (+39.13%)
Mutual labels:  discord-bot, discord-api
auto
A code scanner Discord bot.
Stars: ✭ 15 (-67.39%)
Mutual labels:  discord-bot, discord-api
Discord-Selfbot
Discord.js selfbot
Stars: ✭ 24 (-47.83%)
Mutual labels:  discord-bot, discord-api
suggestions-bot
A Discord bot designed to build better communities by encouraging a positive and constructive relationship between community and staff.
Stars: ✭ 22 (-52.17%)
Mutual labels:  discord-bot, discord-api
DiscordBot-Template
A boilerplate / template for discord.js bots with 100% coverage of Discord API, command handler, error handler based on https://discordjs.guide/
Stars: ✭ 129 (+180.43%)
Mutual labels:  discord-bot, discord-api
Discord-Reposter
Bot for reposting Discord messages (work in progress)
Stars: ✭ 62 (+34.78%)
Mutual labels:  discord-bot, discord-api
Rubicon
Dead yo!
Stars: ✭ 14 (-69.57%)
Mutual labels:  discord-bot, discord-api

DPY Anti-Spam


Pytest Coverage Status License: MIT PyPI download month Discord

Ever felt the need to handle spammers in your discord, but don't have the time or effort to do so yourself? This package aims to help solve that issue by handling all the required logic under the hood, as well as handling the spammers.


How to use this right now?

Download the codebase:

> pip install Discord-Anti-Spam

A basic bot

import discord
from discord.ext import commands
from antispam import AntiSpamHandler

intents = discord.Intents.default()
bot = commands.Bot(command_prefix="!", intents=intents)
bot.handler = AntiSpamHandler(bot)


@bot.event
async def on_ready():
    print(f"-----\nLogged in as: {bot.user.name} : {bot.user.id}\n-----")


@bot.event
async def on_message(message):
    await bot.handler.propagate(message)
    await bot.process_commands(message)


if __name__ == "__main__":
    bot.run("Bot Token")

And that's it! Now, there will no doubt be bugs & changes etc. But, you can use this as is now and all I ask is you create an issue for anything you encounter while using this codebase.

Docs can be found here


Build Ideology:

  • OOP approach
  • Scalable -> Multi guild support out of the box
  • Test Driven -> CI with Github Actions

Discord

Given the steady progress of this library I decided to create a discord. Come checkout the progress of the next release, give us ideas for what we should add, etc...

Discord Invite


Helping out:

All help is appreciated, just create an issue or pull request! See here for more details.


License

This project is licensed under the MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].