Skip to content

Commit a77f02a

Browse files
committed
ver
1 parent d2469e3 commit a77f02a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import whatsapp_api_webhook_server_python.webhooksHandler as webhooksHandler
3030
## Запуск сервера
3131

3232
```
33-
webhooksHandler.startServer('127.0.0.1', 8000, onEvent)
33+
webhooksHandler.startServer('127.0.0.1', 80, onEvent)
3434
```
3535

3636
onEvent - метод обработки вебхуков, который определяет разработчик.

examples/echo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def onStatusInstanceChanged(webhookHandler: handler.WebhooksHandler, body):
103103
print(TextOut)
104104

105105
def main():
106-
handler.startServer('127.0.0.1', 8000, onEvent)
106+
handler.startServer('127.0.0.1', 80, onEvent)
107107

108108
if __name__ == "__main__":
109109
main()

setup.py

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

66
setuptools.setup(
77
name="whatsapp-api-webhook-server-python",
8-
version="0.0.4",
8+
version="0.0.5",
99
install_requires=['tornado'],
1010
author="Ivan Sadovy",
1111
author_email="sadiv@bk.ru",

0 commit comments

Comments
 (0)