MTPyroger/examples/welcome_bot.py

36 lines
1008 B
Python
Raw Normal View History

2018-04-14 16:46:54 +00:00
from pyrogram import Client, Emoji, Filters
2018-03-09 12:23:53 +00:00
2018-05-06 09:56:25 +00:00
"""This is the Welcome Bot in @PyrogramChat.
2018-04-14 16:46:54 +00:00
It uses the Emoji module to easily add emojis in your text messages and Filters
to make it only work for specific messages in a specific chat
2018-03-09 12:23:53 +00:00
"""
2018-04-14 16:46:54 +00:00
app = Client("my_account")
@app.on_message(Filters.chat("PyrogramChat") & Filters.new_chat_members)
def welcome(client, message):
2018-05-06 09:56:25 +00:00
# Build the new members list (with mentions) by using their first_name
2018-04-14 16:46:54 +00:00
new_members = ", ".join([
"[{}](tg://user?id={})".format(i.first_name, i.id)
2018-04-21 20:09:26 +00:00
for i in message.new_chat_members
])
2018-04-14 16:46:54 +00:00
2018-05-06 09:56:25 +00:00
# Build the welcome message by using an emoji and the list we built above
2018-04-14 16:46:54 +00:00
text = "{} Welcome to [Pyrogram](https://docs.pyrogram.ml/)'s group chat {}!".format(
Emoji.SPARKLES,
new_members
)
2018-05-06 09:56:25 +00:00
# Send the welcome message
2018-04-14 16:46:54 +00:00
client.send_message(
message.chat.id, text,
reply_to_message_id=message.message_id,
disable_web_page_preview=True
)
app.start()
app.idle()