From f2e16c5910f3a49becc19e7afa1a90e3f74b511d Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Mon, 26 Feb 2018 17:10:58 +0100 Subject: [PATCH] Create README.md --- examples/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/README.md diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 00000000..3e4a7b85 --- /dev/null +++ b/examples/README.md @@ -0,0 +1,14 @@ +# Examples + +This folder contains example scripts to show you how **Pyrogram** looks like. +You can start with [hello_world.py](https://github.com/pyrogram/pyrogram/blob/master/examples/hello_world.py) and continue +with the more advanced examples. Every script is working right away, meaning you can simply copy-paste and run, the only things +you have to change are the target chats (username, id) and file paths for sending media (photo, video, ...). + +- [**hello_world.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/hello_world.py) +- [**get_history.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/get_history.py) +- [**get_participants.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/get_participants.py) +- [**updates.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/updates.py) +- [**simple_echo.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/simple_echo.py) +- [**advanced_echo.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/advanced_echo.py) +- [**advanced_echo2.py**](https://github.com/pyrogram/pyrogram/blob/master/examples/advanced_echo2.py)