A Discord permission name resolver for Pycord
Project description
alianator
alianator is a Discord permission name resolver for Pycord.
It takes Discord's API permission flags (e.g. manage_guild) and resolves them to their user-facing aliases (
e.g. Manage Server).
Installation
$ pip install alianator
Usage
alianator can resolve aliases from discord.Permissions objects, integers, strings, tuples, lists of strings, and lists
of tuples.
import alianator
alianator.resolve(arg, mode=mode)
The optional mode flag can be used to specify which permissions should be resolved. If mode is True, only granted
permissions will be resolved; if mode is False, only denied permissions will be resolved; if mode is None, all
permissions will be resolved. If mode is not explicitly specified, it will default to True.
import alianator
import discord
# Resolving from a discord.Permissions object
perms = discord.Permissions.general()
aliases = alianator.resolve(perms)
print(aliases)
# ['Manage Channels', 'Manage Server', 'View Audit Log', 'Read Messages', 'View Server Insights', 'Manage Roles', 'Manage Webhooks', 'Manage Emojis and Stickers']
# Resolving from an integer
perms = 3072
aliases = alianator.resolve(perms)
print(aliases)
# ['View Channel', 'Send Messages and Create Posts']
# Resolving from a string
perms = "send_tts_messages"
aliases = alianator.resolve(perms)
print(aliases)
# ['Send Text-To-Speech Messages']
# Resolving from a tuple
perms = ("moderate_members", True)
aliases = alianator.resolve(perms)
print(aliases)
# ['Timeout Members']
# Resolving from a list of strings
perms = ["manage_guild", "manage_emojis"]
aliases = alianator.resolve(perms)
print(aliases)
# ['Manage Server', 'Manage Emojis and Stickers']
# Resolving from a list of tuples
perms = [("use_slash_commands", True), ("use_voice_activation", True)]
aliases = alianator.resolve(perms)
print(aliases)
# ['Use Application Commands', 'Use Voice Activity']
That's about all there is to it. alianator does one thing and does it well.
License
alianator is released under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alianator-4.0.2.tar.gz.
File metadata
- Download URL: alianator-4.0.2.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.11.1 Linux/5.15.0-1033-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4e7a89a22cd57e3d5480a482ee466901b338591d8284812fab02cc82cc71ef7
|
|
| MD5 |
27134b0da4dbc63c6cdd1d8f8be7a3f6
|
|
| BLAKE2b-256 |
e06ff220aa210cc4ae441f943b0ca46fcb088c7239a5d9882419705f9e4ff178
|
File details
Details for the file alianator-4.0.2-py3-none-any.whl.
File metadata
- Download URL: alianator-4.0.2-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.11.1 Linux/5.15.0-1033-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00101733e0b4837015fe501451cd35f8db5ec06e864d8479fdbd3b82e8a85d3a
|
|
| MD5 |
93d7ae983020872e3588b199377fa780
|
|
| BLAKE2b-256 |
03b33a2809ebcdfeb79e215fe86200e315a5a421726b3db27ee030fbaa31ff40
|