.. | ||
callback_query_handler.py | ||
echo_bot.py | ||
get_chat_members2.py | ||
get_chat_members.py | ||
get_history.py | ||
hello_world.py | ||
LICENSE | ||
query_inline_bots.py | ||
raw_update_handler.py | ||
README.md | ||
send_bot_keyboards.py | ||
welcome_bot.py |
Examples
This folder contains example scripts to show you how Pyrogram looks like.
Every script is working right away (provided you correctly set up your credentials), meaning you can simply copy-paste and run. The only things you have to change are session names and target chats.
All the examples listed in this directory are licensed under the terms of the CC0 1.0 Universal license and can be freely used as basic building blocks for your own applications without worrying about copyrights.
Example | Description |
---|---|
hello_world | Demonstration of basic API usages |
echo_bot | Echo bot that replies to every private text message |
welcome_bot | The Welcome Bot source code in @PyrogramChat |
get_history | How to retrieve the full message history of a chat |
get_chat_members | How to get the first 10.000 members of a supergroup/channel |
get_chat_members2 | Improved version to get more than 10.000 members |
query_inline_bots | How to query an inline bot and send a result to a chat |
send_bot_keyboards | How to send normal and inline keyboards using regular bots |
callback_query_handler | How to handle queries coming from inline button presses |
raw_update_handler | How to handle raw updates (old, should be avoided) |