dshellInterpreter 0.2.5__tar.gz → 0.2.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dshellInterpreter might be problematic. Click here for more details.
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_member.py +3 -1
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/dshell_keywords.py +7 -5
- {dshellinterpreter-0.2.5/dshellInterpreter.egg-info → dshellinterpreter-0.2.5.1}/PKG-INFO +1 -1
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1/dshellInterpreter.egg-info}/PKG-INFO +1 -1
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/setup.py +1 -1
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/__init__.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_channel.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_message.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_pastbin.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_role.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellInterpreteur/__init__.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellInterpreteur/dshell_interpreter.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellParser/__init__.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellParser/ast_nodes.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellParser/dshell_parser.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/__init__.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/dshell_token_type.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/dshell_tokenizer.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/__init__.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_utils.py +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/LICENSE +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/README.md +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/SOURCES.txt +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/dependency_links.txt +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/requires.txt +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/top_level.txt +0 -0
- {dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/setup.cfg +0 -0
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/dshell_keywords.py
RENAMED
|
@@ -43,6 +43,8 @@ dshell_commands: dict[str, Callable] = {
|
|
|
43
43
|
"mm": dshell_move_member, # move member to another channel
|
|
44
44
|
"rm": dshell_rename_member, # rename member
|
|
45
45
|
"cp": dshell_check_permissions, # check permissions
|
|
46
|
+
"gmr": dshell_give_member_roles, # give roles
|
|
47
|
+
"rmr": dshell_remove_member_roles, # remove roles
|
|
46
48
|
|
|
47
49
|
"ghm": dshell_get_hystory_messages, # research regex in message
|
|
48
50
|
"src": dshell_research_regex_in_content, # research regex in content
|
|
@@ -50,12 +52,12 @@ dshell_commands: dict[str, Callable] = {
|
|
|
50
52
|
"ec": dshell_edit_text_channel, # edit text channel
|
|
51
53
|
"evc": dshell_edit_voice_channel, # edit voice channel
|
|
52
54
|
|
|
53
|
-
"cr": dshell_create_role,
|
|
54
|
-
"dr": dshell_delete_roles,
|
|
55
|
-
"er": dshell_edit_role,
|
|
55
|
+
"cr": dshell_create_role, # create role
|
|
56
|
+
"dr": dshell_delete_roles, # delete role
|
|
57
|
+
"er": dshell_edit_role, # edit role
|
|
56
58
|
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
+
"ar": dshell_add_reactions, # add reactions to a message
|
|
60
|
+
"rr": dshell_remove_reactions, # remove reactions from a message
|
|
59
61
|
|
|
60
62
|
}
|
|
61
63
|
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="dshellInterpreter",
|
|
8
|
-
version="0.2.5",
|
|
8
|
+
version="0.2.5.1",
|
|
9
9
|
author="Chronos",
|
|
10
10
|
author_email="vagabonwalybi@gmail.com",
|
|
11
11
|
description="A Discord bot interpreter for creating custom commands and automations.",
|
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_channel.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_message.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_pastbin.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/DISCORD_COMMANDS/dshell_role.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellInterpreteur/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/dshell_token_type.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/Dshell/_DshellTokenizer/dshell_tokenizer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/requires.txt
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.5 → dshellinterpreter-0.2.5.1}/dshellInterpreter.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|