Skip to content

Commit a694b19

Browse files
authored
Merge pull request #4 from green-api/SW-1731
Updated docs
2 parents 703f030 + f08d476 commit a694b19

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# whatsapp-api-webhook-server-python
22

3-
[![Python application](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-app.yml/badge.svg?branch=master)](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-app.yml)
4-
[![Upload Python Package](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-publish.yml/badge.svg)](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-publish.yml)
3+
![](https://img.shields.io/badge/license-CC%20BY--ND%204.0-green)
4+
![](https://img.shields.io/pypi/status/whatsapp-api-webhook-server-python)
5+
![](https://img.shields.io/pypi/pyversions/whatsapp-api-webhook-server-python)
6+
![](https://img.shields.io/github/actions/workflow/status/green-api/whatsapp-api-webhook-server-python/python-app.yml)
7+
![](https://img.shields.io/pypi/dm/whatsapp-api-webhook-server-python)
58

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

811
whatsapp-api-webhook-server-python is a library for integration with WhatsApp messenger using the API
912
service [green-api.com](https://green-api.com/en/). You should get a registration token and an account ID in
@@ -76,7 +79,9 @@ Library installation:
7679
python3 -m pip install whatsapp-api-webhook-server-python
7780
```
7881

79-
As an example you can download and run [our script](examples/echo.py). The script sends all incoming notifications.
82+
As an example you can download and run [our script](
83+
https://github.com/green-api/whatsapp-api-webhook-server-python/blob/master/examples/echo.py
84+
). The script sends all incoming notifications.
8085

8186
```shell
8287
wget https://raw.githubusercontent.com/green-api/whatsapp-api-webhook-server-python/master/examples/echo.py
@@ -178,7 +183,7 @@ Method parameters:
178183
| typeWebhook | type of incoming notification |
179184
| body | notification body |
180185

181-
Example: [echo.py](examples/echo.py).
186+
Example: [echo.py](https://github.com/green-api/whatsapp-api-webhook-server-python/blob/master/examples/echo.py).
182187

183188
## How to reroute incoming notifications to a web server
184189

@@ -192,6 +197,6 @@ in [personal cabinet](https://console.green-api.com/).
192197
## License
193198

194199
Licensed under [
195-
Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
200+
Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
196201
](https://creativecommons.org/licenses/by-nd/4.0/) terms.
197-
Please see file [LICENSE](LICENSE).
202+
Please see file [LICENSE](https://github.com/green-api/whatsapp-api-webhook-server-python/blob/master/LICENSE).

docs/README_RU.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# whatsapp-api-webhook-server-python
22

3-
[![Python application](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-app.yml/badge.svg?branch=master)](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-app.yml)
4-
[![Upload Python Package](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-publish.yml/badge.svg)](https://github.com/green-api/whatsapp-api-webhook-server-python/actions/workflows/python-publish.yml)
3+
![](https://img.shields.io/badge/license-CC%20BY--ND%204.0-green)
4+
![](https://img.shields.io/pypi/status/whatsapp-api-webhook-server-python)
5+
![](https://img.shields.io/pypi/pyversions/whatsapp-api-webhook-server-python)
6+
![](https://img.shields.io/github/actions/workflow/status/green-api/whatsapp-api-webhook-server-python/python-app.yml)
7+
![](https://img.shields.io/pypi/dm/whatsapp-api-webhook-server-python)
58

69
whatsapp-api-webhook-server-python - библиотека для интеграции с мессенджером WhatsApp через API
710
сервиса [green-api.com](https://green-api.com/). Чтобы воспользоваться библиотекой, нужно получить регистрационный токен
@@ -193,5 +196,5 @@ webhooksHandler.startServer('127.0.0.1', 80, onEvent)
193196
## Лицензия
194197

195198
Лицензировано на условиях [
196-
Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
199+
Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
197200
](https://creativecommons.org/licenses/by-nd/4.0/). [LICENSE](../LICENSE).

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="whatsapp-api-webhook-server-python",
8-
version="0.0.6",
8+
version="0.0.7",
99
description=(
1010
"This library helps you easily create"
1111
" a Python server endpoint to receive WhatsApp message webhooks."

0 commit comments

Comments
 (0)