Skip to content

Commit bd6f9a4

Browse files
committed
Fixed links
1 parent 8dc52d0 commit bd6f9a4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
![](https://img.shields.io/github/actions/workflow/status/green-api/whatsapp-chatbot-python/python-package.yml)
77
![](https://img.shields.io/pypi/dm/whatsapp-chatbot-python)
88

9-
- [Документация на русском языке](docs/README.md).
9+
- [Документация на русском языке](https://github.com/green-api/whatsapp-chatbot-python/blob/master/docs/README.md).
1010

1111
whatsapp-chatbot-python is a library for integration with WhatsApp messenger using the API
1212
service [green-api.com](https://green-api.com/en/). You should get a registration token and an account ID in
@@ -60,7 +60,7 @@ brackets.
6060

6161
To start the bot, call the `bot.run_forever` function. You can stop the bot with the key combination Ctrl + C.
6262

63-
Link to example: [base.py](examples/base.py).
63+
Link to example: [base.py](https://github.com/green-api/whatsapp-chatbot-python/blob/master/examples/base.py).
6464

6565
```
6666
@bot.router.message(text_message="message")
@@ -82,7 +82,7 @@ You can receive not only incoming messages but also outgoing messages. You can a
8282
The body of the notification is in `notification.event`. In this example, we get the message type from the notification
8383
body.
8484

85-
Link to example: [event.py](examples/event.py).
85+
Link to example: [event.py](https://github.com/green-api/whatsapp-chatbot-python/blob/master/examples/event.py).
8686

8787
```
8888
@bot.router.message()
@@ -163,7 +163,7 @@ command = ("help", "!/")
163163

164164
#### Example
165165

166-
Link to example: [filters.py](examples/filters.py).
166+
Link to example: [filters.py](https://github.com/green-api/whatsapp-chatbot-python/blob/master/examples/filters.py).
167167

168168
```
169169
@bot.router.message(command="help")
@@ -178,7 +178,7 @@ bot.run_forever()
178178

179179
To be notified when a button is pressed, you must use the `bot.router.buttons` object.
180180

181-
Link to example: [buttons.py](examples/buttons.py).
181+
Link to example: [buttons.py](https://github.com/green-api/whatsapp-chatbot-python/blob/master/examples/buttons.py).
182182

183183
```
184184
@bot.router.buttons()
@@ -211,4 +211,4 @@ bot.run_forever()
211211
Licensed under [
212212
Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
213213
](https://creativecommons.org/licenses/by-nd/4.0/) terms.
214-
Please see file [LICENSE](LICENSE).
214+
Please see file [LICENSE](https://github.com/green-api/whatsapp-chatbot-python/blob/master/LICENSE).

0 commit comments

Comments
 (0)