Andrin
f77ba711ba
Add reaction type to raw events and users iterator
11 months ago
Rapptz
97ae6409b0
Add support for burst reactions
2 years ago
Rapptz
c5da0fe7c1
Remove and address stale TODO comments
2 years ago
Steve C
ce06beeb6c
Fix permissions-based docstrings to be more consistent
3 years ago
Rapptz
1a90327202
Fix potential infinite loop in Reaction.users
3 years ago
Kellen
0f18d93e47
Remove unused imports
3 years ago
Stocker
5aa696ccfa
Fix typing issues and improve typing completeness across the library
Co-authored-by: Danny <[email protected] >
Co-authored-by: Josh <[email protected] >
3 years ago
chromacoat dreamkey
095aaa9ad1
Change wording of InvalidArgument removal in docs
3 years ago
Jens Reidel
89009759e0
Fix missing User import in reaction.py
Signed-off-by: Jens Reidel <[email protected] >
3 years ago
Rapptz
4c8b1f9abd
Remove unused imports
3 years ago
Josh
2b69b5d545
Remove discord.InvalidArgument
This uses TypeError and ValueError instead.
3 years ago
Josh
3ce00abeae
Fix some type-check errors
3 years ago
Rapptz
88b520b5ab
Reformat code using black
Segments where readability was hampered were fixed by appropriate
format skipping directives. New code should hopefully be black
compatible. The moment they remove the -S option is probably the moment
I stop using black though.
3 years ago
Rapptz
015072b7fd
Remove wrong import
3 years ago
Kaylynn Morgan
588cda0996
Refactor AsyncIter to use 3.6+ asynchronous generators
3 years ago
jack1142
dc19c6c7d5
Add positional-only arguments in more places
3 years ago
Rapptz
f6ea03230e
Make parameters passed to Reaction.user keyword-only
4 years ago
Rapptz
c251c51cb1
Typehint Reaction
4 years ago
Rapptz
9181bf046b
Rename Reaction.custom_emoji to Reaction.is_custom_emoji
This legacy attribute was apparently never changed to be consistent
with the rest of the library
4 years ago
Rapptz
99fc950510
Use f-strings in more places that were missed.
4 years ago
Nadir Chowdhury
89456022cf
Add `__all__` to remaining modules
4 years ago
Rapptz
9d39b135f4
Modernize code to use f-strings
This also removes the encoding on the top, since Python 3 does it by
default. It also changes some methods to use `yield from`.
4 years ago
Nihaal Sangha
69bdc3a184
Change copyright year to present
4 years ago
Rapptz
6071607176
Bump copyright year to 2020
Closes #2510
5 years ago
Rapptz
87f9dcff9c
Add support for clearing a specific reaction.
Closes #2440
5 years ago
DevilXD
c6539bbc61
Reaction's emoji can be a partial one too
6 years ago
NCPlayz
3c9bcc2851
Improve documentation
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Myst(MysterialPy)
806295a1be
Add `remove()` to Reaction
Added a coro, `remove()` which takes in a sole parameter, `member`.
This new coro will remove the reaction by the provided member from the reactions message.
`message.remove_reaction(reaction, member)` was not removed as to not introduce breaking changes.
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Hornwitser
cd218fa6a7
Remove Reaction.users "Python 3.4 usage" section
Remove nonsensical "Python 3.4" usage section from Reaction.users().
Left behind from f25091ef
.
7 years ago
MusicOnline
a329565e74
Fix Reaction.users documentation
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago
Tobotimus
3112e1c17e
Add intersphinx
7 years ago
Rapptz
e0f02f1775
Rename AsyncIterator.get to next to prevent shadowing.
8 years ago
Rapptz
649e4de149
Add Reaction.__str__
8 years ago
Rapptz
d239cc2666
Implement "partial" message events.
These are events that get triggered regardless of the state of the
message cache. Useful for getting data from before the bot was booted.
8 years ago
Rapptz
f4e01b3a92
Make supported operations stand out more than attributes.
8 years ago
Rapptz
f73eb087c9
Use describe instead of tables for supported operations.
8 years ago
Rapptz
1fc08bc5a2
Remove unused imports.
8 years ago
Rapptz
2abdbc70c2
Implement utilities for AsyncIterator.
Closes #473 .
8 years ago
Rapptz
ff9f5749e1
Update copyright year to 2017.
8 years ago
Rapptz
ae6fb54b1b
Make Reaction.users return an async iterator.
8 years ago
Rapptz
5e6bfecb07
Move away from StateContext and use ConnectionState directly.
8 years ago
Rapptz
d5b616fa11
Rename MessageChannel abc to Messageable.
8 years ago
Rapptz
dceba9d962
Add useful repr to all data classes.
8 years ago
Rapptz
c187d87dae
Re-add support for reactions.
We now store emojis in a global cache and make things like adding
and removing reactions part of the stateful Message class.
9 years ago
Rapptz
44624b7f44
Documentation fixes.
8 years ago
khazhyk
4d87b2f817
Inject full Emoji to Reaction if we have it.
Reaction objects with custom Emoji are partial. If we know of this Emoji
(can find it on this client) then inject it. Otherwise, leave it as a
hollow Emoji. We can still react with a hollow Emoji, but can't get other
metadata about it.
9 years ago
khazhyk
c4acc0e1a1
Add support for reactions.
Reactions can be be standard emojis, or custom server emojis.
Adds
- add/remove_reaction
- get_reaction_users
- Messages have new field reactions
- new events - message_reaction_add, message_reaction_remove
- new permission - add_reactions
9 years ago