dshellInterpreter 0.2.12__tar.gz → 0.2.13__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.
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_channel.py +8 -8
- {dshellinterpreter-0.2.12/dshellInterpreter.egg-info → dshellinterpreter-0.2.13}/PKG-INFO +1 -1
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13/dshellInterpreter.egg-info}/PKG-INFO +1 -1
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/setup.py +1 -1
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/__init__.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_member.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_message.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_pastbin.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_role.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/utils/__init__.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/utils/utils_message.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/utils/utils_thread.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellInterpreteur/__init__.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellInterpreteur/dshell_interpreter.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellParser/__init__.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellParser/ast_nodes.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellParser/dshell_parser.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/__init__.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/dshell_keywords.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/dshell_token_type.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/dshell_tokenizer.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/__init__.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_utils.py +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/LICENSE +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/README.md +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/SOURCES.txt +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/dependency_links.txt +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/requires.txt +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/top_level.txt +0 -0
- {dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/setup.cfg +0 -0
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_channel.py
RENAMED
|
@@ -103,7 +103,7 @@ async def dshell_create_text_channel(ctx: Message,
|
|
|
103
103
|
slowmode=MISSING,
|
|
104
104
|
topic=MISSING,
|
|
105
105
|
nsfw=MISSING,
|
|
106
|
-
|
|
106
|
+
permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
|
|
107
107
|
reason=None):
|
|
108
108
|
"""
|
|
109
109
|
Creates a text channel on the server
|
|
@@ -129,7 +129,7 @@ async def dshell_create_text_channel(ctx: Message,
|
|
|
129
129
|
slowmode_delay=slowmode,
|
|
130
130
|
topic=topic,
|
|
131
131
|
nsfw=nsfw,
|
|
132
|
-
overwrites=
|
|
132
|
+
overwrites=permissions,
|
|
133
133
|
reason=reason)
|
|
134
134
|
|
|
135
135
|
return created_channel.id
|
|
@@ -140,7 +140,7 @@ async def dshell_create_voice_channel(ctx: Message,
|
|
|
140
140
|
category=None,
|
|
141
141
|
position=MISSING,
|
|
142
142
|
bitrate=MISSING,
|
|
143
|
-
|
|
143
|
+
permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
|
|
144
144
|
reason=None):
|
|
145
145
|
"""
|
|
146
146
|
Creates a voice channel on the server
|
|
@@ -157,7 +157,7 @@ async def dshell_create_voice_channel(ctx: Message,
|
|
|
157
157
|
category=channel_category,
|
|
158
158
|
position=position,
|
|
159
159
|
bitrate=bitrate,
|
|
160
|
-
overwrites=
|
|
160
|
+
overwrites=permissions,
|
|
161
161
|
reason=reason)
|
|
162
162
|
|
|
163
163
|
return created_channel.id
|
|
@@ -210,7 +210,7 @@ async def dshell_edit_text_channel(ctx: Message,
|
|
|
210
210
|
slowmode=MISSING,
|
|
211
211
|
topic=MISSING,
|
|
212
212
|
nsfw=MISSING,
|
|
213
|
-
|
|
213
|
+
permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
|
|
214
214
|
reason=None):
|
|
215
215
|
"""
|
|
216
216
|
Edits a text channel on the server
|
|
@@ -238,7 +238,7 @@ async def dshell_edit_text_channel(ctx: Message,
|
|
|
238
238
|
slowmode_delay=slowmode if slowmode is not MISSING else channel_to_edit.slowmode_delay,
|
|
239
239
|
topic=topic if topic is not MISSING else channel_to_edit.topic,
|
|
240
240
|
nsfw=nsfw if nsfw is not MISSING else channel_to_edit.nsfw,
|
|
241
|
-
overwrites=
|
|
241
|
+
overwrites=permissions if permissions is not MISSING else channel_to_edit.overwrites,
|
|
242
242
|
reason=reason)
|
|
243
243
|
|
|
244
244
|
return channel_to_edit.id
|
|
@@ -249,7 +249,7 @@ async def dshell_edit_voice_channel(ctx: Message,
|
|
|
249
249
|
name=None,
|
|
250
250
|
position=MISSING,
|
|
251
251
|
bitrate=MISSING,
|
|
252
|
-
|
|
252
|
+
permissions: dict[Union[Member, Role], PermissionOverwrite] = MISSING,
|
|
253
253
|
reason=None):
|
|
254
254
|
"""
|
|
255
255
|
Edits a voice channel on the server
|
|
@@ -268,7 +268,7 @@ async def dshell_edit_voice_channel(ctx: Message,
|
|
|
268
268
|
await channel_to_edit.edit(name=name if name is not None else channel_to_edit.name,
|
|
269
269
|
position=position if position is not MISSING else channel_to_edit.position,
|
|
270
270
|
bitrate=bitrate if bitrate is not MISSING else channel_to_edit.bitrate,
|
|
271
|
-
overwrites=
|
|
271
|
+
overwrites=permissions if permissions is not MISSING else channel_to_edit.overwrites,
|
|
272
272
|
reason=reason)
|
|
273
273
|
|
|
274
274
|
return channel_to_edit.id
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="dshellInterpreter",
|
|
8
|
-
version="0.2.
|
|
8
|
+
version="0.2.13",
|
|
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.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_member.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_message.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_pastbin.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/dshell_role.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/utils/__init__.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/utils/utils_message.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/DISCORD_COMMANDS/utils/utils_thread.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/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.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/dshell_keywords.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/dshell_token_type.py
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/Dshell/_DshellTokenizer/dshell_tokenizer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/requires.txt
RENAMED
|
File without changes
|
{dshellinterpreter-0.2.12 → dshellinterpreter-0.2.13}/dshellInterpreter.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|