dshellInterpreter 0.2.19.1__py3-none-any.whl → 0.2.19.2__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.
- Dshell/_DshellInterpreteur/dshell_interpreter.py +7 -0
- {dshellinterpreter-0.2.19.1.dist-info → dshellinterpreter-0.2.19.2.dist-info}/METADATA +1 -1
- {dshellinterpreter-0.2.19.1.dist-info → dshellinterpreter-0.2.19.2.dist-info}/RECORD +6 -6
- {dshellinterpreter-0.2.19.1.dist-info → dshellinterpreter-0.2.19.2.dist-info}/WHEEL +0 -0
- {dshellinterpreter-0.2.19.1.dist-info → dshellinterpreter-0.2.19.2.dist-info}/licenses/LICENSE +0 -0
- {dshellinterpreter-0.2.19.1.dist-info → dshellinterpreter-0.2.19.2.dist-info}/top_level.txt +0 -0
|
@@ -55,12 +55,19 @@ class DshellInterpreteur:
|
|
|
55
55
|
'__author_bot__': message.author.bot,
|
|
56
56
|
'__author_nick__': message.author.nick if hasattr(message.author, 'nick') else None,
|
|
57
57
|
'__author_id__': message.author.id,
|
|
58
|
+
'__author_add_reaction__': None, # Can be overwritten by add vars_env parameter to get the author on message add event reaction
|
|
59
|
+
'__author_remove_reaction__': None, # Can be overwritten by add vars_env parameter to get the author on message remove event reaction
|
|
58
60
|
|
|
59
61
|
'__message__': message.content,
|
|
60
62
|
'__message_content__': message.content,
|
|
61
63
|
'__message_id__': message.id,
|
|
62
64
|
'__message_author__': message.author.id,
|
|
63
65
|
'__message_before__': message.content, # same as __message__, but before edit. Can be overwritten by add vars_env parameter
|
|
66
|
+
'__message_created_at__': str(message.created_at),
|
|
67
|
+
'__message_edited_at__': str(message.edited_at),
|
|
68
|
+
'__message_reactions__': ListNode([str(reaction.emoji) for reaction in message.reactions]),
|
|
69
|
+
'__message_add_reaction__': None, # Can be overwritten by add vars_env parameter to get the reaction added on message add event reaction
|
|
70
|
+
'__message_remove_reaction__': None, # Can be overwritten by add vars_env parameter to get the reaction removed on message remove event reaction
|
|
64
71
|
'__message_url__': message.jump_url if hasattr(message, 'jump_url') else None,
|
|
65
72
|
'__last_message__': message.channel.last_message_id,
|
|
66
73
|
|
|
@@ -16,7 +16,7 @@ Dshell/DISCORD_COMMANDS/utils/utils_permissions.py,sha256=Gi6vpCA2yXUZ20OCay5dkX
|
|
|
16
16
|
Dshell/DISCORD_COMMANDS/utils/utils_string.py,sha256=2LvJG_PR_VkPdnsw0vKNTwhEQGNog-3gFd_rZIUpGKc,4709
|
|
17
17
|
Dshell/DISCORD_COMMANDS/utils/utils_thread.py,sha256=tVl4msEwrWHY-0AytI6eY3JSs-eIFUigDSJfK9mT1ww,1457
|
|
18
18
|
Dshell/_DshellInterpreteur/__init__.py,sha256=jl_gH8MoqerW--I-IHXwUZTo80JOtfr7AOA57xVgeGQ,58
|
|
19
|
-
Dshell/_DshellInterpreteur/dshell_interpreter.py,sha256=
|
|
19
|
+
Dshell/_DshellInterpreteur/dshell_interpreter.py,sha256=I9QOEtHNmj40XlQSVmr7peKztikO-MYMiP5Ro3KXgEE,30645
|
|
20
20
|
Dshell/_DshellInterpreteur/errors.py,sha256=0PJz_VYZfNZeKR_PEHxw3tRkgKNNUerV0wwrq2r1luA,250
|
|
21
21
|
Dshell/_DshellParser/__init__.py,sha256=ONDfhZMvClqP_6tE8SLjp-cf3pXL-auQYnfYRrHZxC4,56
|
|
22
22
|
Dshell/_DshellParser/ast_nodes.py,sha256=6SGRQ4wTniah90f-teCKg-l9q3yNzazIhi7Obm38Vow,19636
|
|
@@ -25,8 +25,8 @@ Dshell/_DshellTokenizer/__init__.py,sha256=LIQSRhDx2B9pmPx5ADMwwD0Xr9ybneVLhHH8q
|
|
|
25
25
|
Dshell/_DshellTokenizer/dshell_keywords.py,sha256=f3bAIx8-5aVMhO2-3jbSix3r7Q6yvXMi3Xxy21mjJ0w,7325
|
|
26
26
|
Dshell/_DshellTokenizer/dshell_token_type.py,sha256=bkug7eBKjYofkOGmwzPnAH9rQlU14cO0PelZbT0kGoQ,1544
|
|
27
27
|
Dshell/_DshellTokenizer/dshell_tokenizer.py,sha256=aSXdzEyhqoYYLpMLsLwRpeQPp84PA1F5cjm9O1EYBQs,7350
|
|
28
|
-
dshellinterpreter-0.2.19.
|
|
29
|
-
dshellinterpreter-0.2.19.
|
|
30
|
-
dshellinterpreter-0.2.19.
|
|
31
|
-
dshellinterpreter-0.2.19.
|
|
32
|
-
dshellinterpreter-0.2.19.
|
|
28
|
+
dshellinterpreter-0.2.19.2.dist-info/licenses/LICENSE,sha256=lNgcw1_xb7QENAQi3uHGymaFtbs0RV-ihiCd7AoLQjA,1082
|
|
29
|
+
dshellinterpreter-0.2.19.2.dist-info/METADATA,sha256=T634W79HuWx48_Nd-d5BlrX95nvOjqmQ70Rd0LvD8AA,1151
|
|
30
|
+
dshellinterpreter-0.2.19.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
31
|
+
dshellinterpreter-0.2.19.2.dist-info/top_level.txt,sha256=B4CMhtmchGwPQJLuqUy0GhRG-0cUGxKL4GqEbCiB_vE,7
|
|
32
|
+
dshellinterpreter-0.2.19.2.dist-info/RECORD,,
|
|
File without changes
|
{dshellinterpreter-0.2.19.1.dist-info → dshellinterpreter-0.2.19.2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|