kiwi-tcms-api 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 kiwi-tcms-api contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,187 @@
1
+ Metadata-Version: 2.4
2
+ Name: kiwi-tcms-api
3
+ Version: 0.0.1
4
+ Summary: Python client for Kiwi TCMS JSON-RPC API
5
+ License-Expression: MIT
6
+ Project-URL: Repository, https://github.com/alekseyvm/kiwi-tcms-api
7
+ Keywords: kiwi,tcms,test management,json-rpc,api,client
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Testing
18
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: requests>=2.20
23
+ Requires-Dist: beautifulsoup4>=4.9
24
+ Dynamic: license-file
25
+
26
+ # kiwi-tcms-api
27
+
28
+ Python-клиент для работы с [Kiwi TCMS](https://kiwitcms.org/) через JSON-RPC API.
29
+
30
+ ## Установка
31
+
32
+ ```bash
33
+ pip install kiwi-tcms-api
34
+ ```
35
+
36
+ ## Возможности
37
+
38
+ - Подключение с авторизацией через сессию (CSRF + Cookie)
39
+ - 4 способа инициализации клиента
40
+ - Конфигурация через переменные окружения
41
+ - Полное покрытие официального API: TestCase, TestRun, TestPlan, TestExecution, Product, Build, User и др.
42
+ - Два стиля вызова: именованные методы и dot-нотация (`rpc.Product.filter()`)
43
+ - Поддержка самоподписанных SSL-сертификатов
44
+
45
+ ## Установка зависимостей
46
+
47
+ ```bash
48
+ pip install requests beautifulsoup4
49
+ ```
50
+
51
+ ## Быстрый старт
52
+
53
+ ```python
54
+ from kiwi_tcms_api import KiwiTCMSApi
55
+
56
+ rpc = KiwiTCMSApi(url='https://tcms.example.com', username='admin', password='secret')
57
+
58
+ # Получить список продуктов
59
+ products = rpc.Product_filter()
60
+
61
+ # Создать тест-ран
62
+ run = rpc.TestRun_create({
63
+ 'summary': 'Smoke Tests',
64
+ 'plan': 1,
65
+ 'build': 1,
66
+ 'manager': 1,
67
+ })
68
+ ```
69
+
70
+ ## Способы инициализации
71
+
72
+ ```python
73
+ # 1. Из переменных окружения
74
+ rpc = KiwiTCMSApi()
75
+
76
+ # 2. Явные параметры
77
+ rpc = KiwiTCMSApi(url='https://tcms.example.com', username='admin', password='secret')
78
+
79
+ # 3. Отложенное подключение
80
+ rpc = KiwiTCMSApi.configure(url='https://tcms.example.com', username='admin', password='secret')
81
+ rpc.connect()
82
+
83
+ # 4. Из словаря конфигурации
84
+ cfg = {'url': 'https://tcms.example.com', 'username': 'admin', 'password': 'secret'}
85
+ rpc = KiwiTCMSApi.from_config(cfg)
86
+ ```
87
+
88
+ ## Переменные окружения
89
+
90
+ | Переменная | По умолчанию | Описание |
91
+ |-----------------------------|-------------------------|-----------------------------------|
92
+ | `KIWI_TCMS_API_URL` | `http://localhost:8000` | URL сервера Kiwi TCMS |
93
+ | `KIWI_TCMS_API_USERNAME` | — | Имя пользователя |
94
+ | `KIWI_TCMS_API_PASSWORD` | — | Пароль |
95
+ | `KIWI_TCMS_API_VERIFY_SSL` | `true` | Проверка SSL-сертификата (`false` для самоподписанных) |
96
+
97
+ ## Стили вызова методов
98
+
99
+ ```python
100
+ # Именованный метод
101
+ rpc.TestCase_filter({'product': 1})
102
+
103
+ # Dot-нотация (модуль.метод)
104
+ rpc.TestCase.filter({'product': 1})
105
+
106
+ # Прямой вызов exec
107
+ rpc.exec('TestCase.filter', [{'product': 1}])
108
+ ```
109
+
110
+ ## Покрытие API
111
+
112
+ | Модуль | Методы |
113
+ |----------------------|---------------------------------------------------------------------------------------------|
114
+ | `Auth` | login, logout |
115
+ | `TestCase` | create, filter, update, remove, add/remove tag/component/attachment/comment/property и др. |
116
+ | `TestPlan` | create, filter, update, add/remove case/tag/attachment, tree |
117
+ | `TestRun` | create, filter, update, add/remove case/tag/cc/attachment/property |
118
+ | `TestExecution` | create, filter, update, add/remove comment/link/attachment/property |
119
+ | `TestCaseStatus` | create, filter |
120
+ | `TestExecutionStatus`| create, filter |
121
+ | `Product` | create, filter |
122
+ | `Build` | create, filter, update |
123
+ | `Version` | create, filter |
124
+ | `Component` | create, filter, update |
125
+ | `Category` | create, filter |
126
+ | `Environment` | create, filter, add/remove property |
127
+ | `User` | filter, update, deactivate, join_group, add_attachment |
128
+ | `Group` | filter, permissions, users |
129
+ | `Bug` | details, report |
130
+ | `BugTracker` | create, filter |
131
+ | `Tag` | create, filter |
132
+ | `Template` | create, filter |
133
+ | `PlanType` | create, filter |
134
+ | `Priority` | create, filter |
135
+ | `Classification` | create, filter |
136
+ | `Attachment` | remove_attachment |
137
+ | `Markdown` | render |
138
+ | `Kiwitcms` | version |
139
+ | `Utils` | tracker_from_url |
140
+
141
+ ## Примеры
142
+
143
+ ### Создание тест-кейса и добавление в план
144
+
145
+ ```python
146
+ rpc = KiwiTCMSApi()
147
+
148
+ case = rpc.TestCase_create({
149
+ 'summary': 'Проверка авторизации',
150
+ 'product': 1,
151
+ 'category': 1,
152
+ 'priority': 1,
153
+ 'case_status': 2,
154
+ })
155
+
156
+ rpc.TestPlan_add_case(plan_id=5, case_id=case['id'])
157
+ ```
158
+
159
+ ### Обновление статуса выполнения
160
+
161
+ ```python
162
+ rpc.TestExecution_update(execution_id=42, values={'status': 4})
163
+ ```
164
+
165
+ ### Добавление ссылки к выполнению
166
+
167
+ ```python
168
+ rpc.TestExecution_add_link({
169
+ 'execution': 42,
170
+ 'url': 'https://jira.example.com/browse/BUG-123',
171
+ 'name': 'BUG-123',
172
+ })
173
+ ```
174
+
175
+ ### Отключение проверки SSL (самоподписанный сертификат)
176
+
177
+ ```python
178
+ rpc = KiwiTCMSApi(url='https://tcms.internal', username='admin', password='secret', verify_ssl=False)
179
+ # или через переменную окружения:
180
+ # KIWI_TCMS_API_VERIFY_SSL=false
181
+ ```
182
+
183
+ ### Диагностика доступных методов
184
+
185
+ ```python
186
+ rpc.discover_methods()
187
+ ```
@@ -0,0 +1,162 @@
1
+ # kiwi-tcms-api
2
+
3
+ Python-клиент для работы с [Kiwi TCMS](https://kiwitcms.org/) через JSON-RPC API.
4
+
5
+ ## Установка
6
+
7
+ ```bash
8
+ pip install kiwi-tcms-api
9
+ ```
10
+
11
+ ## Возможности
12
+
13
+ - Подключение с авторизацией через сессию (CSRF + Cookie)
14
+ - 4 способа инициализации клиента
15
+ - Конфигурация через переменные окружения
16
+ - Полное покрытие официального API: TestCase, TestRun, TestPlan, TestExecution, Product, Build, User и др.
17
+ - Два стиля вызова: именованные методы и dot-нотация (`rpc.Product.filter()`)
18
+ - Поддержка самоподписанных SSL-сертификатов
19
+
20
+ ## Установка зависимостей
21
+
22
+ ```bash
23
+ pip install requests beautifulsoup4
24
+ ```
25
+
26
+ ## Быстрый старт
27
+
28
+ ```python
29
+ from kiwi_tcms_api import KiwiTCMSApi
30
+
31
+ rpc = KiwiTCMSApi(url='https://tcms.example.com', username='admin', password='secret')
32
+
33
+ # Получить список продуктов
34
+ products = rpc.Product_filter()
35
+
36
+ # Создать тест-ран
37
+ run = rpc.TestRun_create({
38
+ 'summary': 'Smoke Tests',
39
+ 'plan': 1,
40
+ 'build': 1,
41
+ 'manager': 1,
42
+ })
43
+ ```
44
+
45
+ ## Способы инициализации
46
+
47
+ ```python
48
+ # 1. Из переменных окружения
49
+ rpc = KiwiTCMSApi()
50
+
51
+ # 2. Явные параметры
52
+ rpc = KiwiTCMSApi(url='https://tcms.example.com', username='admin', password='secret')
53
+
54
+ # 3. Отложенное подключение
55
+ rpc = KiwiTCMSApi.configure(url='https://tcms.example.com', username='admin', password='secret')
56
+ rpc.connect()
57
+
58
+ # 4. Из словаря конфигурации
59
+ cfg = {'url': 'https://tcms.example.com', 'username': 'admin', 'password': 'secret'}
60
+ rpc = KiwiTCMSApi.from_config(cfg)
61
+ ```
62
+
63
+ ## Переменные окружения
64
+
65
+ | Переменная | По умолчанию | Описание |
66
+ |-----------------------------|-------------------------|-----------------------------------|
67
+ | `KIWI_TCMS_API_URL` | `http://localhost:8000` | URL сервера Kiwi TCMS |
68
+ | `KIWI_TCMS_API_USERNAME` | — | Имя пользователя |
69
+ | `KIWI_TCMS_API_PASSWORD` | — | Пароль |
70
+ | `KIWI_TCMS_API_VERIFY_SSL` | `true` | Проверка SSL-сертификата (`false` для самоподписанных) |
71
+
72
+ ## Стили вызова методов
73
+
74
+ ```python
75
+ # Именованный метод
76
+ rpc.TestCase_filter({'product': 1})
77
+
78
+ # Dot-нотация (модуль.метод)
79
+ rpc.TestCase.filter({'product': 1})
80
+
81
+ # Прямой вызов exec
82
+ rpc.exec('TestCase.filter', [{'product': 1}])
83
+ ```
84
+
85
+ ## Покрытие API
86
+
87
+ | Модуль | Методы |
88
+ |----------------------|---------------------------------------------------------------------------------------------|
89
+ | `Auth` | login, logout |
90
+ | `TestCase` | create, filter, update, remove, add/remove tag/component/attachment/comment/property и др. |
91
+ | `TestPlan` | create, filter, update, add/remove case/tag/attachment, tree |
92
+ | `TestRun` | create, filter, update, add/remove case/tag/cc/attachment/property |
93
+ | `TestExecution` | create, filter, update, add/remove comment/link/attachment/property |
94
+ | `TestCaseStatus` | create, filter |
95
+ | `TestExecutionStatus`| create, filter |
96
+ | `Product` | create, filter |
97
+ | `Build` | create, filter, update |
98
+ | `Version` | create, filter |
99
+ | `Component` | create, filter, update |
100
+ | `Category` | create, filter |
101
+ | `Environment` | create, filter, add/remove property |
102
+ | `User` | filter, update, deactivate, join_group, add_attachment |
103
+ | `Group` | filter, permissions, users |
104
+ | `Bug` | details, report |
105
+ | `BugTracker` | create, filter |
106
+ | `Tag` | create, filter |
107
+ | `Template` | create, filter |
108
+ | `PlanType` | create, filter |
109
+ | `Priority` | create, filter |
110
+ | `Classification` | create, filter |
111
+ | `Attachment` | remove_attachment |
112
+ | `Markdown` | render |
113
+ | `Kiwitcms` | version |
114
+ | `Utils` | tracker_from_url |
115
+
116
+ ## Примеры
117
+
118
+ ### Создание тест-кейса и добавление в план
119
+
120
+ ```python
121
+ rpc = KiwiTCMSApi()
122
+
123
+ case = rpc.TestCase_create({
124
+ 'summary': 'Проверка авторизации',
125
+ 'product': 1,
126
+ 'category': 1,
127
+ 'priority': 1,
128
+ 'case_status': 2,
129
+ })
130
+
131
+ rpc.TestPlan_add_case(plan_id=5, case_id=case['id'])
132
+ ```
133
+
134
+ ### Обновление статуса выполнения
135
+
136
+ ```python
137
+ rpc.TestExecution_update(execution_id=42, values={'status': 4})
138
+ ```
139
+
140
+ ### Добавление ссылки к выполнению
141
+
142
+ ```python
143
+ rpc.TestExecution_add_link({
144
+ 'execution': 42,
145
+ 'url': 'https://jira.example.com/browse/BUG-123',
146
+ 'name': 'BUG-123',
147
+ })
148
+ ```
149
+
150
+ ### Отключение проверки SSL (самоподписанный сертификат)
151
+
152
+ ```python
153
+ rpc = KiwiTCMSApi(url='https://tcms.internal', username='admin', password='secret', verify_ssl=False)
154
+ # или через переменную окружения:
155
+ # KIWI_TCMS_API_VERIFY_SSL=false
156
+ ```
157
+
158
+ ### Диагностика доступных методов
159
+
160
+ ```python
161
+ rpc.discover_methods()
162
+ ```
@@ -0,0 +1,38 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "kiwi-tcms-api"
7
+ version = "0.0.1"
8
+ description = "Python client for Kiwi TCMS JSON-RPC API"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.8"
12
+ keywords = ["kiwi", "tcms", "test management", "json-rpc", "api", "client"]
13
+ classifiers = [
14
+ "Development Status :: 5 - Production/Stable",
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.8",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Topic :: Software Development :: Testing",
24
+ "Topic :: Software Development :: Libraries :: Python Modules",
25
+ ]
26
+ dependencies = [
27
+ "requests>=2.20",
28
+ "beautifulsoup4>=4.9",
29
+ ]
30
+
31
+ [project.urls]
32
+ Repository = "https://github.com/alekseyvm/kiwi-tcms-api"
33
+
34
+ [tool.setuptools]
35
+ py-modules = ["kiwi_tcms_api"]
36
+
37
+ [tool.setuptools.package-dir]
38
+ "" = "src"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,187 @@
1
+ Metadata-Version: 2.4
2
+ Name: kiwi-tcms-api
3
+ Version: 0.0.1
4
+ Summary: Python client for Kiwi TCMS JSON-RPC API
5
+ License-Expression: MIT
6
+ Project-URL: Repository, https://github.com/alekseyvm/kiwi-tcms-api
7
+ Keywords: kiwi,tcms,test management,json-rpc,api,client
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Testing
18
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: requests>=2.20
23
+ Requires-Dist: beautifulsoup4>=4.9
24
+ Dynamic: license-file
25
+
26
+ # kiwi-tcms-api
27
+
28
+ Python-клиент для работы с [Kiwi TCMS](https://kiwitcms.org/) через JSON-RPC API.
29
+
30
+ ## Установка
31
+
32
+ ```bash
33
+ pip install kiwi-tcms-api
34
+ ```
35
+
36
+ ## Возможности
37
+
38
+ - Подключение с авторизацией через сессию (CSRF + Cookie)
39
+ - 4 способа инициализации клиента
40
+ - Конфигурация через переменные окружения
41
+ - Полное покрытие официального API: TestCase, TestRun, TestPlan, TestExecution, Product, Build, User и др.
42
+ - Два стиля вызова: именованные методы и dot-нотация (`rpc.Product.filter()`)
43
+ - Поддержка самоподписанных SSL-сертификатов
44
+
45
+ ## Установка зависимостей
46
+
47
+ ```bash
48
+ pip install requests beautifulsoup4
49
+ ```
50
+
51
+ ## Быстрый старт
52
+
53
+ ```python
54
+ from kiwi_tcms_api import KiwiTCMSApi
55
+
56
+ rpc = KiwiTCMSApi(url='https://tcms.example.com', username='admin', password='secret')
57
+
58
+ # Получить список продуктов
59
+ products = rpc.Product_filter()
60
+
61
+ # Создать тест-ран
62
+ run = rpc.TestRun_create({
63
+ 'summary': 'Smoke Tests',
64
+ 'plan': 1,
65
+ 'build': 1,
66
+ 'manager': 1,
67
+ })
68
+ ```
69
+
70
+ ## Способы инициализации
71
+
72
+ ```python
73
+ # 1. Из переменных окружения
74
+ rpc = KiwiTCMSApi()
75
+
76
+ # 2. Явные параметры
77
+ rpc = KiwiTCMSApi(url='https://tcms.example.com', username='admin', password='secret')
78
+
79
+ # 3. Отложенное подключение
80
+ rpc = KiwiTCMSApi.configure(url='https://tcms.example.com', username='admin', password='secret')
81
+ rpc.connect()
82
+
83
+ # 4. Из словаря конфигурации
84
+ cfg = {'url': 'https://tcms.example.com', 'username': 'admin', 'password': 'secret'}
85
+ rpc = KiwiTCMSApi.from_config(cfg)
86
+ ```
87
+
88
+ ## Переменные окружения
89
+
90
+ | Переменная | По умолчанию | Описание |
91
+ |-----------------------------|-------------------------|-----------------------------------|
92
+ | `KIWI_TCMS_API_URL` | `http://localhost:8000` | URL сервера Kiwi TCMS |
93
+ | `KIWI_TCMS_API_USERNAME` | — | Имя пользователя |
94
+ | `KIWI_TCMS_API_PASSWORD` | — | Пароль |
95
+ | `KIWI_TCMS_API_VERIFY_SSL` | `true` | Проверка SSL-сертификата (`false` для самоподписанных) |
96
+
97
+ ## Стили вызова методов
98
+
99
+ ```python
100
+ # Именованный метод
101
+ rpc.TestCase_filter({'product': 1})
102
+
103
+ # Dot-нотация (модуль.метод)
104
+ rpc.TestCase.filter({'product': 1})
105
+
106
+ # Прямой вызов exec
107
+ rpc.exec('TestCase.filter', [{'product': 1}])
108
+ ```
109
+
110
+ ## Покрытие API
111
+
112
+ | Модуль | Методы |
113
+ |----------------------|---------------------------------------------------------------------------------------------|
114
+ | `Auth` | login, logout |
115
+ | `TestCase` | create, filter, update, remove, add/remove tag/component/attachment/comment/property и др. |
116
+ | `TestPlan` | create, filter, update, add/remove case/tag/attachment, tree |
117
+ | `TestRun` | create, filter, update, add/remove case/tag/cc/attachment/property |
118
+ | `TestExecution` | create, filter, update, add/remove comment/link/attachment/property |
119
+ | `TestCaseStatus` | create, filter |
120
+ | `TestExecutionStatus`| create, filter |
121
+ | `Product` | create, filter |
122
+ | `Build` | create, filter, update |
123
+ | `Version` | create, filter |
124
+ | `Component` | create, filter, update |
125
+ | `Category` | create, filter |
126
+ | `Environment` | create, filter, add/remove property |
127
+ | `User` | filter, update, deactivate, join_group, add_attachment |
128
+ | `Group` | filter, permissions, users |
129
+ | `Bug` | details, report |
130
+ | `BugTracker` | create, filter |
131
+ | `Tag` | create, filter |
132
+ | `Template` | create, filter |
133
+ | `PlanType` | create, filter |
134
+ | `Priority` | create, filter |
135
+ | `Classification` | create, filter |
136
+ | `Attachment` | remove_attachment |
137
+ | `Markdown` | render |
138
+ | `Kiwitcms` | version |
139
+ | `Utils` | tracker_from_url |
140
+
141
+ ## Примеры
142
+
143
+ ### Создание тест-кейса и добавление в план
144
+
145
+ ```python
146
+ rpc = KiwiTCMSApi()
147
+
148
+ case = rpc.TestCase_create({
149
+ 'summary': 'Проверка авторизации',
150
+ 'product': 1,
151
+ 'category': 1,
152
+ 'priority': 1,
153
+ 'case_status': 2,
154
+ })
155
+
156
+ rpc.TestPlan_add_case(plan_id=5, case_id=case['id'])
157
+ ```
158
+
159
+ ### Обновление статуса выполнения
160
+
161
+ ```python
162
+ rpc.TestExecution_update(execution_id=42, values={'status': 4})
163
+ ```
164
+
165
+ ### Добавление ссылки к выполнению
166
+
167
+ ```python
168
+ rpc.TestExecution_add_link({
169
+ 'execution': 42,
170
+ 'url': 'https://jira.example.com/browse/BUG-123',
171
+ 'name': 'BUG-123',
172
+ })
173
+ ```
174
+
175
+ ### Отключение проверки SSL (самоподписанный сертификат)
176
+
177
+ ```python
178
+ rpc = KiwiTCMSApi(url='https://tcms.internal', username='admin', password='secret', verify_ssl=False)
179
+ # или через переменную окружения:
180
+ # KIWI_TCMS_API_VERIFY_SSL=false
181
+ ```
182
+
183
+ ### Диагностика доступных методов
184
+
185
+ ```python
186
+ rpc.discover_methods()
187
+ ```
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/kiwi_tcms_api.py
5
+ src/kiwi_tcms_api.egg-info/PKG-INFO
6
+ src/kiwi_tcms_api.egg-info/SOURCES.txt
7
+ src/kiwi_tcms_api.egg-info/dependency_links.txt
8
+ src/kiwi_tcms_api.egg-info/requires.txt
9
+ src/kiwi_tcms_api.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ requests>=2.20
2
+ beautifulsoup4>=4.9
@@ -0,0 +1 @@
1
+ kiwi_tcms_api