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.
Files changed (54) hide show
  1. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/__init__.py +9 -9
  2. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_channel.py +701 -694
  3. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_embed.py +67 -67
  4. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_file.py +100 -100
  5. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_interaction.py +161 -161
  6. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_member.py +530 -530
  7. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_message.py +531 -517
  8. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_pastbin.py +28 -28
  9. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_role.py +219 -219
  10. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/dshell_ui.py +518 -518
  11. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/__init__.py +10 -10
  12. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_embed.py +30 -30
  13. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_file.py +41 -41
  14. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_global.py +357 -357
  15. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_list.py +195 -195
  16. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_member.py +49 -49
  17. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_message.py +157 -157
  18. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_numbers.py +30 -30
  19. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_permissions.py +141 -141
  20. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_string.py +286 -286
  21. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_thread.py +38 -38
  22. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DISCORD_COMMANDS/utils/utils_type_validation.py +346 -346
  23. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/__init__.py +4 -4
  24. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/cached_messages.py +3 -3
  25. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_arguments.py +87 -87
  26. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_global_variables.py +10 -8
  27. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_interpreter.py +406 -406
  28. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/dshell_scope.py +81 -81
  29. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/errors.py +7 -7
  30. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellInterpreteur/utils_interpreter.py +208 -208
  31. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/__init__.py +2 -2
  32. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/ast_nodes.py +1102 -1102
  33. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/dshell_parser.py +489 -489
  34. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellParser/errors.py +7 -7
  35. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellPreProcess/dshell_preprocess.py +37 -37
  36. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/__init__.py +4 -4
  37. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/dshell_keywords.py +222 -222
  38. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/dshell_token_type.py +79 -79
  39. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellTokenizer/dshell_tokenizer.py +286 -286
  40. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/__init__.py +2 -2
  41. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/full_import.py +17 -17
  42. dshellinterpreter-1.2.0.22/Dshell/regex_test.py +3 -0
  43. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/LICENSE +20 -20
  44. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/PKG-INFO +36 -36
  45. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/README.md +3 -3
  46. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/PKG-INFO +36 -36
  47. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/setup.cfg +4 -4
  48. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/setup.py +34 -34
  49. dshellinterpreter-1.2.0.20/Dshell/regex_test.py +0 -3
  50. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/Dshell/DshellPreProcess/__init__.py +0 -0
  51. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/SOURCES.txt +0 -0
  52. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/dependency_links.txt +0 -0
  53. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/requires.txt +0 -0
  54. {dshellinterpreter-1.2.0.20 → dshellinterpreter-1.2.0.22}/dshellInterpreter.egg-info/top_level.txt +0 -0
@@ -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 *