Skip to main content

An asynchronous API wrapper for Hummus by Ziad87

Project description

Hummus.py

This is an asynchronous wrapper currently in version 0.3.1!

Getting started

Download these files and put them in a folder named "hummus". Next to the hummus folder, create your main file. You can use the following code in the main file to connect to Hummus:

import hummus
from hummus import Client
import asyncio

class Commands(Client):
	async def test(self,ctx:hummus.Message):
		print(ctx.content)
		await ctx.reply(f"<@{ctx.author.id}> activated test!")

Client = Commands(prefix="!",bottoken="INSERT TOKEN HERE", status="online", game="!test")

asyncio.run(Client.RUN())

Adding new commands is as simple as creating new functions under the Commands class. Adding custom arguments is as simple as adding parameters in a function, as seen below (remember: In every function, you must have the self and ctx:hummus.message.Message args!):

class Commands(Client):
	async def test(self,ctx:hummus.Message,test=None): #extra "test" arg
		print(test)
		print(ctx.content)
		await ctx.reply(f"{ctx.author.mention} activated test! Arg 1: {test}") #you can also do "<@{ctx.author.id}>" if you want

You can make these parameters have annotations (test: str or mention: hummus.User) or have default values (test=None).

Arguments

There are 2 ways to have arguments in a Hummus.py command:

  1. Add custom optional arguments to your function
  2. Use .split(" ") to split words in a command into different items on a list

Custom arguments in a function will function differently than using .split(" "). The argument system looks for quotation marks in a message, and if there is text within quotation marks, no matter if there are spaces, the entire text (within the quotations!) will be considered as a single argument. This allows for easier usage of commands like !nickname where you can specify a nickname with spaces, as long as the nickname is within quotation marks.

Quotation marks are not necessary for arguments with no spaces!

Installation

You can do pip install hummus2016.py to install Hummus.py as a package, or you can import it manually by downloading the files at the GitLab repository

Usage

Commands

Hummus.py is in development, so it will not have all the functions existing. Also, please note that the Hummus API itself is unfinished and is missing endpoints, so I cannot have every function either.

Here's an example on how to use the ctx.getUser() function where you can get any user with their ID:

Without parameter and annotation:

class Commands(Client):
	async def avatar(self,ctx:hummus.Message):
		if len(ctx.mentions) > 0:
			member = ctx.getUser(ctx.mentions[0].id)
			await ctx.reply(member.avatar.url)
		else:
			await ctx.reply(ctx.author.avatar.url)

With parameter and annotation:

class Commands(Client):
	async def avatar(self,ctx:hummus.Message,mention:hummus.User=None):
		if mention: #"None" is equivalent to "False"
			await ctx.reply(mention.avatar.url)
		else:
			await ctx.reply(ctx.author.avatar.url)

As you can see, the above code fetches a member based on the first mention that is in the recieved command, and uses the Member object to get their avatar url.

Moderation Commands (or commands requiring permissions)

You can get access to Hummus.py's permissions checking feature with from hummus.funcs import fullPermsCheck. Its arguments are the Message object you recieve on command, your class instance aka self, the permission you want to check, and optionally, the target user ID to compare permissions with. What the fullPermsCheck() function does is that it checks to see if the user has the required permission, and it also checks whether it has a higher role than the target ID when specified (permissions comparing). You would use the function like this:

perms = await fullPermsCheck(ctx,self,"kick_members",ctx.mentions[0]) #assume this is in a command function

The code would return a bool object which you could use to verify that the user executing the command has the required permissions.

So, for commands that require permissions such as kicking members, the optimal code would be the following:

class Commands(Client):
	async def kick(self,ctx:hummus.Message,mention:hummus.User=None):
		if not mention:
			await ctx.reply("Please mention a user to kick them.")
			return
		perms = await fullPermsCheck(ctx,self,"kick_members",mention)
		member = await ctx.getUser(mention)
		if perms:
			e = await member.kick()
			if e.staus_code == 200 or e.status_code == 204: #i dont remember which status code it is lol
				await ctx.reply(f"i have kicked <@{member.id}>!")
			else:
				await ctx.reply(f"Error kicking user. Status code: {e.status_code}")
		else:
			await ctx.reply(f"You do not have the perms to kick {member.user.username}!")

Existing moderation commands you can use:

  • member.kick()
  • member.nick()
  • ctx.deleteMessage()
  • ctx.bulkDelete()

Hummus's API is very unfinished, which means fetching a guild member with the endpoint doesn't exist, as is with many other endpoints. Therefore, Hummus.py has to rely on login information for necessary info such as role permissions. Because I am lazy and don't know how Hummus/Discord's permissions integers works, Hummus.py now uses Discord.py as a dependency (it has a needed permissions function). However, this is mainly a package process, which means you don't need to manually import Discord.py in your main bot code, you just need to have it installed.

Events

You can use events to execute code, as demonstrated below.

from hummus import Events

class Events(Events):
	async def on_message_create(self, message):
		if message.content.startswith("ping"):
			await message.reply("pong")

Make sure to put this in your main file, before your Client class. You will also want to "listen" for this class before running the Client class, as shown below:

Client = Commands(prefix="!", bottoken=token, status="online", game="!test")

async def bot():
	Client.LISTEN(Events())
	Client.RUN()

asyncio.run(bot())

Events are a WIP, expect some bugs and a lot of missing events.

Support

I am LG125YT#2241 on Hummus, @ytlg on Discord, and @lg125yt on Replit.

Roadmap

Currently attempting to add all endpoints from the Hummus API docs beginning with most important for bot development.

Changelog

Version 0.3.4:

  • Fixed ctx.edit() so that it edits only the "content" section of the "reply" from ctx.reply() (basically it doesn't edit the whole message)
  • Added a new is_reply (boolean), original_reply (content of the message being replied to), and original_author (User class) attributes to the Message object
    • is_reply is entirely local, it is only true for a message object where the ctx.reply() function is used, and cannot detect replies outside of ctx.reply()
  • Errors caught by the package exception handler now print out the traceback
  • Minor changes to the README

Version 0.3.3:

  • Updated the README (this thingy you're reading!) to not have the wackiest indents (frick you replit)

Version 0.3.2:

  • Fixed hummus.py not working when you didn't manually register an Events class to listen.

Version 0.3.1:

  • Quick update just added ctx.deleteMessage(id) because i forgor to add it before :sku:

Version 0.3.0:

  • More events in the Events class work now, also self.allGuilds in the Client class now updates on related events like guild member join/leave and guild add/remove
  • Client class initialization redone a little, see the "Getting Started" and "Events" section in this README
  • Command args should now fully work, you do not need to add a default value to parameters and some annotations (namely str,int, and hummus.member.User) now work
  • The Author class has been renamed to the User class because most use cases within the package do not reflect the "Author" status of a user (this should not affect much of anything since annotations did not work before this update)

Too lazy to like do anything from before, if you want to do it for me, go for it.

Contributing

Contribute if you want, you can make a pull request on the GitLab repository, comment on the Replit project. Note that the Replit project is the most recent version of Hummus.py, because it is where I test new features. You can see upcoming features on the Replit project if you want.

Authors

This wrapper was made by LG125YT. Contact me on Hummus (LG125YT#2241) or Discord (@ytlg)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

hummus2016.py-0.3.4-py3-none-any.whl (22.0 kB view hashes)

Uploaded Python 3

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