Skip to content

Commit a777518

Browse files
authored
Merge pull request #168 from samson0v/master
Updated REST client to 3.8
2 parents 99c064e + 1340f27 commit a777518

File tree

164 files changed

+13719
-3369
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+13719
-3369
lines changed

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[tool.poetry]
2+
name = "tb-rest-client"
3+
version = "3.8.0"
4+
description = "ThingsBoard REST API client"
5+
authors = ["ThingsBoard <[email protected]>"]
6+
license = "Apache-2.0"
7+
readme = "README.md"
8+
homepage = "https://thingsboard.io/docs/reference/python-rest-client/"
9+
repository = "https://github.com/thingsboard/thingsboard-python-rest-client"
10+
documentation = "https://thingsboard.io/docs/reference/python-rest-client/"
11+
keywords = ["tb-python-rest-client", "tb-rest-client"]
12+
maintainers = [
13+
"Illia Barkov <[email protected]>",
14+
"Vitalii Bidochka <[email protected]>"
15+
]
16+
17+
[tool.poetry.dependencies]
18+
python = "^3.8"
19+
certifi = "2023.7.22"
20+
six = "1.10"
21+
python_dateutil = "2.5.3"
22+
setuptools = "21.0.0"
23+
urllib3 = "2.0.7"
24+
requests = "2.31.0"
25+
pyjwt = "2.6.0"
26+
27+
28+
[build-system]
29+
requires = ["poetry-core"]
30+
build-backend = "poetry.core.masonry.api"

setup.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

tb_rest_client/api/api_ce/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,5 @@
4545
from .image_controller_api import ImageControllerApi
4646
from .mobile_application_controller_api import MobileApplicationControllerApi
4747
from .queue_stats_controller_api import QueueStatsControllerApi
48+
from .domain_controller_api import DomainControllerApi
49+
from .mobile_app_controller_api import MobileAppControllerApi

0 commit comments

Comments
 (0)