dshellInterpreter 0.2.5__py3-none-any.whl → 0.2.5.1__py3-none-any.whl

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.

@@ -11,7 +11,9 @@ __all__ = [
11
11
  "dshell_remove_roles",
12
12
  "dshell_check_permissions",
13
13
  "dshell_timeout_member",
14
- "dshell_move_member"
14
+ "dshell_move_member",
15
+ "dshell_give_member_roles",
16
+ "dshell_remove_member_roles"
15
17
  ]
16
18
 
17
19
 
@@ -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
- "amr": dshell_add_reactions, # add reactions to a message
58
- "rmr": dshell_remove_reactions, # remove reactions from a message
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dshellInterpreter
3
- Version: 0.2.5
3
+ Version: 0.2.5.1
4
4
  Summary: A Discord bot interpreter for creating custom commands and automations.
5
5
  Home-page: https://github.com/BOXERRMD/Dshell_Interpreter
6
6
  Author: Chronos
@@ -2,7 +2,7 @@ Dshell/__init__.py,sha256=pGd94FPy8kVXH_jH566HhApQPhbPfMPnZXzH_0dPWh0,93
2
2
  Dshell/_utils.py,sha256=PJ3fwn8IMqUMnW9oTwfr9v4--rzHIhhLQoVVqjwjoJU,23
3
3
  Dshell/DISCORD_COMMANDS/__init__.py,sha256=_oo_aMEju4gZg-MIbF8bKMVM6CWAF0AO9DxAlemaXMw,149
4
4
  Dshell/DISCORD_COMMANDS/dshell_channel.py,sha256=2qnbI2tUu5sowJVOVkY4p-l6Gu-5Gw9BEP3MItScvV8,8939
5
- Dshell/DISCORD_COMMANDS/dshell_member.py,sha256=CZ9UYS6cLERVAUYk6qwpyeZbFe4QKCEcUeuIHzOYlUU,7573
5
+ Dshell/DISCORD_COMMANDS/dshell_member.py,sha256=M1xM8WaK2f-rXrTCeRahTxa2L8BkXFfg7TGruRTetSw,7641
6
6
  Dshell/DISCORD_COMMANDS/dshell_message.py,sha256=fLxj_Ns-krZgXEPijhWvBFLorvmbleR6JpVOR72BIa8,5180
7
7
  Dshell/DISCORD_COMMANDS/dshell_pastbin.py,sha256=TkWFGRRTvhhJgvwkDFx9Fz4UM2UUFwxyq0laMVx0mUk,881
8
8
  Dshell/DISCORD_COMMANDS/dshell_role.py,sha256=fotsYWGHebgIx157q-zRbcCd90Y7jIuKCZ8udQoEzSU,4970
@@ -12,11 +12,11 @@ Dshell/_DshellParser/__init__.py,sha256=ONDfhZMvClqP_6tE8SLjp-cf3pXL-auQYnfYRrHZ
12
12
  Dshell/_DshellParser/ast_nodes.py,sha256=2qwL_M0ELPia6L6gqwgV5hqprvyuo97cx3Zk2dVz09U,15341
13
13
  Dshell/_DshellParser/dshell_parser.py,sha256=bdnVhx-MchM61J88fa9PimpAdwPtQumywJd-GoMqS8Q,15514
14
14
  Dshell/_DshellTokenizer/__init__.py,sha256=LIQSRhDx2B9pmPx5ADMwwD0Xr9ybneVLhHH8qrJWw_s,172
15
- Dshell/_DshellTokenizer/dshell_keywords.py,sha256=G9qdXr-d05QtmBdwTGa1qMDm7TDbIEkbx_-ERU97Ods,4664
15
+ Dshell/_DshellTokenizer/dshell_keywords.py,sha256=YhHUL5eILrBwk14xyb0sZ-jMsCV2jSxTW87yRZUulNQ,4808
16
16
  Dshell/_DshellTokenizer/dshell_token_type.py,sha256=pWzvmj6EFGkDwNHooOAjdyysi1vZRVEostFIZSW1Ais,1483
17
17
  Dshell/_DshellTokenizer/dshell_tokenizer.py,sha256=-EhwrfbcOcnAxOHWBE89531t25u6c6HmJuT1AKFn9Ew,7032
18
- dshellinterpreter-0.2.5.dist-info/licenses/LICENSE,sha256=lNgcw1_xb7QENAQi3uHGymaFtbs0RV-ihiCd7AoLQjA,1082
19
- dshellinterpreter-0.2.5.dist-info/METADATA,sha256=vzGDd-WRdEgnTmD13y7ZdvmdGx_VUz5bhO8Zv8ctGqk,1120
20
- dshellinterpreter-0.2.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
21
- dshellinterpreter-0.2.5.dist-info/top_level.txt,sha256=B4CMhtmchGwPQJLuqUy0GhRG-0cUGxKL4GqEbCiB_vE,7
22
- dshellinterpreter-0.2.5.dist-info/RECORD,,
18
+ dshellinterpreter-0.2.5.1.dist-info/licenses/LICENSE,sha256=lNgcw1_xb7QENAQi3uHGymaFtbs0RV-ihiCd7AoLQjA,1082
19
+ dshellinterpreter-0.2.5.1.dist-info/METADATA,sha256=8BB2zHakjShZ8t9o25Tzn5egxgtaWq9QAcSlxGFcHLg,1122
20
+ dshellinterpreter-0.2.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
21
+ dshellinterpreter-0.2.5.1.dist-info/top_level.txt,sha256=B4CMhtmchGwPQJLuqUy0GhRG-0cUGxKL4GqEbCiB_vE,7
22
+ dshellinterpreter-0.2.5.1.dist-info/RECORD,,