All Projects → Voxel-Fox-Ltd → Novus

Voxel-Fox-Ltd / Novus

Licence: MIT license
An asyncio Python wrapper around the Discord API, forked off of Rapptz's Discord.py.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Novus

1bot
"One bot, several uses". 1Bot is a multipurpose bot that has all the moderation tools you need, lots of useful utility commands, and a bunch of fun commands that we all need once in a while.
Stars: ✭ 19 (-67.8%)
Mutual labels:  discord-py
Mecha-Karen
In this repository you will find the code for Mecha Karen! A bot written for discord using the discord.py API wrapper
Stars: ✭ 41 (-30.51%)
Mutual labels:  discord-py
discord-ui
A discord.py extension for sending, receiving and handling ui interactions in discord
Stars: ✭ 28 (-52.54%)
Mutual labels:  discord-py
RulesBot
A bot for creating rules and give members a role when they accept the rules
Stars: ✭ 13 (-77.97%)
Mutual labels:  discord-py
albion-discord-bot
Discord Bot for Albion Online that: fetch market prices, search players/guilds, and more!
Stars: ✭ 27 (-54.24%)
Mutual labels:  discord-py
TragicSimpBot
TragicSimp is a discord bot that can send memes, facts, jokes, quotes, and track user stats. This bot has leveling system which rank user based on their commands in a channel created by Bot
Stars: ✭ 22 (-62.71%)
Mutual labels:  discord-py
Axley
A simple multi-purpose Discord bot being made using Discord.py API wrapper..
Stars: ✭ 16 (-72.88%)
Mutual labels:  discord-py
axiol
🚀 An advanced Python Discord bot for everyone
Stars: ✭ 39 (-33.9%)
Mutual labels:  discord-py
Harmonbot
Multi-Platform Factotum Bot
Stars: ✭ 30 (-49.15%)
Mutual labels:  discord-py
Online-Forever
A Code that can make your Discord Account 24/7!
Stars: ✭ 246 (+316.95%)
Mutual labels:  discord-py
Licensy
Discord bot that manages expiration of roles with subscriptions!
Stars: ✭ 47 (-20.34%)
Mutual labels:  discord-py
miso-bot
Discord bot with too many features
Stars: ✭ 41 (-30.51%)
Mutual labels:  discord-py
Discord-Moderation-Bot
Modular Moderation bot for Discord
Stars: ✭ 49 (-16.95%)
Mutual labels:  discord-py
Discord-Tools
VSCode extension allowing the integration of a Discord chat, bot templates, snippets, themes and more!
Stars: ✭ 91 (+54.24%)
Mutual labels:  discord-py
cogwatch
Automatic hot-reloading for your discord.py command files.
Stars: ✭ 17 (-71.19%)
Mutual labels:  discord-py
Ditto
discord.py bot framework with postgres database support.
Stars: ✭ 23 (-61.02%)
Mutual labels:  discord-py
DueUtil
DueUtil the questing and fun Discord bot
Stars: ✭ 16 (-72.88%)
Mutual labels:  discord-py
streamcord
A Discord bot that interacts with the popular streaming service Twitch.tv
Stars: ✭ 83 (+40.68%)
Mutual labels:  discord-py
coding-bot-v4
A discord bot for The Coding Realm
Stars: ✭ 26 (-55.93%)
Mutual labels:  discord-py
eco-bot
A Economy Bot made using discord module of python
Stars: ✭ 31 (-47.46%)
Mutual labels:  discord-py

Novus

Discord server invite PyPI version info PyPI supported Python versions

A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.

A full fork of Rapptz's Discord.py library, with new features added on top.

Key Features

  • Modern Pythonic API using async and await.
  • Proper rate limit handling.
  • Optimised in both speed and memory.

Installing

Python 3.8 or higher is required

To install the library without full voice support, you can just run the following command:

# Linux/macOS
python3 -m pip install -U novus

# Windows
py -3 -m pip install -U novus

Otherwise to get voice support you should run the following command:

# Linux/macOS
python3 -m pip install -U "novus[voice]"

# Windows
py -3 -m pip install -U novus[voice]

To install the development version, do the following:

$ git clone https://github.com/Voxel-Fox-Ltd/novus
$ cd novus
$ python3 -m pip install -U .[voice]

Optional Packages

Please note that on Linux installing voice you must install the following packages via your favourite package manager (e.g. apt, dnf, etc) before running the above commands:

  • libffi-dev (or libffi-devel on some systems)
  • python-dev (e.g. python3.6-dev for Python 3.6)

Quick Example

import discord

class MyClient(discord.Client):
    async def on_ready(self):
        print('Logged on as', self.user)

    async def on_message(self, message):
        # don't respond to ourselves
        if message.author == self.user:
            return

        if message.content == 'ping':
            await message.channel.send('pong')

client = MyClient()
client.run('token')

Bot Example

import discord
from discord.ext import commands

bot = commands.Bot(command_prefix='>')

@bot.command()
async def ping(ctx):
    await ctx.send('pong')

bot.run('token')

You can find more examples in the examples directory.

Links

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].