Add Filters.me

Useful to filter messages coming from the current running user.
Does the same thing as Filters.user("me")
This commit is contained in:
Dan 2019-01-03 20:58:38 +01:00
parent d69a93d253
commit 36f987e979

View File

@ -61,6 +61,9 @@ class Filters:
create = create
me = create("Me", lambda _, m: bool(m.from_user and m.from_user.is_self))
"""Filter messages coming from you yourself"""
bot = create("Bot", lambda _, m: bool(m.from_user and m.from_user.is_bot))
"""Filter messages coming from bots"""