You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
6) В удаленном репозитории нажать _compare&pull request_
10
+
11
+
Также рекомендуем ознакомиться с подробной инструкцией для контрибьютеров - <ahref="https://github.com/firstcontributions/first-contributions">README.md</a>
12
+
13
+
## Tests
14
+
1) Если добавляется новая функциональность, то покрывайте ее тестами
15
+
2) Следите за тем, чтобы тесты успешно выполнялись в PR перед мержем.
16
+
17
+
## Merge
18
+
Ветка будет смержена в мастер, когда:
19
+
1) Все пайплайны пройдут успешно
20
+
2) Новая функциональность будет покрыта тестами
21
+
22
+
После выполнения всех пунктов один из сотрудников проверит в ближайшее время PR и смержит его.
### [<imgsrc="logo_msg.png"width="16"> VK Teams API Specification](https://teams.vk.com/botapi/)
6
10
7
-
# Table of contents
8
-
-[Introduction](#introduction)
9
-
-[Getting started](#getting-started)
10
-
-[Installing](#installing)
11
-
-[API description](#api-description)
11
+
## Getting started
12
12
13
-
# Introduction
14
-
15
-
This library provides complete Bot API 1.0 interface and compatible with Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10.
16
-
17
-
# Getting started
18
-
19
-
* Create your own bot by sending the /newbot command to <ahref="https://icq.com/people/70001">Metabot</a> and follow the instructions.
13
+
* Create your own bot by sending the _/newbot_ command to _Metabot_ and follow the instructions.
20
14
>Note: a bot can only reply after the user has added it to his contact list, or if the user was the first to start a dialogue.
21
-
* You can configure the domain that hosts your ICQ server. When instantiating the Bot class, add the address of your domain.
22
-
> Example: Bot(token=TOKEN, name=NAME, version=VERSION, api_url_base="https://api.icq.net/bot/v1"), by default we use the domain: https://api.icq.net/bot/v1
23
-
* If you are Myteam client, you can add flag "is_myteam=True", when instantiating the Bot class. This will let you use additional chat methods.
24
-
> Example: Bot(token=TOKEN, name=NAME, is_myteam=True), by default it is False.
25
-
15
+
* You can configure the domain that hosts your VK Teams server. When instantiating the Bot class, add the address of your domain.
16
+
* An example of how to use the framework can be seen in _example/test_bot.py_
26
17
27
-
> An example of how to use the framework can be seen in example/test_bot.py
0 commit comments