dshellInterpreter 1.2.0.20__tar.gz → 1.2.0.22__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-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/__init__.py +9 -9
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_channel.py +701 -694
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_embed.py +67 -67
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_file.py +100 -100
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_interaction.py +161 -161
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_member.py +530 -530
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_message.py +531 -517
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_pastbin.py +28 -28
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_role.py +219 -219
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_ui.py +518 -518
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/__init__.py +10 -10
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_embed.py +30 -30
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_file.py +41 -41
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_global.py +357 -357
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_list.py +195 -195
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_member.py +49 -49
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_message.py +157 -157
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_numbers.py +30 -30
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_permissions.py +141 -141
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_string.py +286 -286
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_thread.py +38 -38
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_type_validation.py +346 -346
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/__init__.py +4 -4
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/cached_messages.py +3 -3
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_arguments.py +87 -87
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_global_variables.py +10 -8
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_interpreter.py +406 -406
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_scope.py +81 -81
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/errors.py +7 -7
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/utils_interpreter.py +208 -208
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/__init__.py +2 -2
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/ast_nodes.py +1102 -1102
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/dshell_parser.py +489 -489
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/errors.py +7 -7
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellPreProcess/dshell_preprocess.py +37 -37
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/__init__.py +4 -4
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/dshell_keywords.py +222 -222
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/dshell_token_type.py +79 -79
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/dshell_tokenizer.py +286 -286
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/__init__.py +2 -2
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/full_import.py +17 -17
- dshellinterpreter-1.2.0.22/Dshell/regex_test.py +3 -0
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/LICENSE +20 -20
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/PKG-INFO +36 -36
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/README.md +3 -3
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/PKG-INFO +36 -36
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/setup.cfg +4 -4
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/setup.py +34 -34
- dshellinterpreter-1.2.0.20/Dshell/regex_test.py +0 -3
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellPreProcess/__init__.py +0 -0
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/SOURCES.txt +0 -0
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/dependency_links.txt +0 -0
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/requires.txt +0 -0
- {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/top_level.txt +0 -0
{dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/__init__.py
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
from .dshell_channel import *
|
|
2
|
-
from .dshell_message import *
|
|
3
|
-
from .dshell_member import *
|
|
4
|
-
from .dshell_pastbin import *
|
|
5
|
-
from .dshell_role import *
|
|
6
|
-
from .dshell_interaction import *
|
|
7
|
-
from .dshell_embed import *
|
|
8
|
-
from .utils import *
|
|
9
|
-
from .dshell_file import *
|
|
1
|
+
from .dshell_channel import *
|
|
2
|
+
from .dshell_message import *
|
|
3
|
+
from .dshell_member import *
|
|
4
|
+
from .dshell_pastbin import *
|
|
5
|
+
from .dshell_role import *
|
|
6
|
+
from .dshell_interaction import *
|
|
7
|
+
from .dshell_embed import *
|
|
8
|
+
from .utils import *
|
|
9
|
+
from .dshell_file import *
|