├── .github └── instructions │ └── instructions.md ├── .gitignore ├── .vscode └── tasks.json ├── LICENSE ├── README.md ├── pyproject.toml ├── pytest.ini ├── setup.py ├── tests ├── __init__.py ├── test_asset.py ├── test_attributes.py ├── test_customer.py ├── test_dashboard.py ├── test_device.py ├── test_device_profile.py ├── test_device_profile_info.py ├── test_telemetry.py ├── test_tenant.py └── test_user.py ├── thingsboard_api_tools.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── not-zip-safe ├── requires.txt └── top_level.txt └── thingsboard_api_tools ├── Customer.py ├── Dashboard.py ├── Device.py ├── DeviceProfile.py ├── EntityType.py ├── HasAttributes.py ├── TbApi.py ├── TbModel.py ├── TelemetryRecord.py ├── Tenant.py ├── User.py ├── __init__.py ├── py.typed ├── pyproject.toml └── requirements.txt /.github/instructions/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/.github/instructions/instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the tests directory a Python package 2 | -------------------------------------------------------------------------------- /tests/test_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_asset.py -------------------------------------------------------------------------------- /tests/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_attributes.py -------------------------------------------------------------------------------- /tests/test_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_customer.py -------------------------------------------------------------------------------- /tests/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_dashboard.py -------------------------------------------------------------------------------- /tests/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_device.py -------------------------------------------------------------------------------- /tests/test_device_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_device_profile.py -------------------------------------------------------------------------------- /tests/test_device_profile_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_device_profile_info.py -------------------------------------------------------------------------------- /tests/test_telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_telemetry.py -------------------------------------------------------------------------------- /tests/test_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_tenant.py -------------------------------------------------------------------------------- /tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/tests/test_user.py -------------------------------------------------------------------------------- /thingsboard_api_tools.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools.egg-info/PKG-INFO -------------------------------------------------------------------------------- /thingsboard_api_tools.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /thingsboard_api_tools.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /thingsboard_api_tools.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /thingsboard_api_tools.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /thingsboard_api_tools.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | thingsboard_api_tools 2 | -------------------------------------------------------------------------------- /thingsboard_api_tools/Customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/Customer.py -------------------------------------------------------------------------------- /thingsboard_api_tools/Dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/Dashboard.py -------------------------------------------------------------------------------- /thingsboard_api_tools/Device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/Device.py -------------------------------------------------------------------------------- /thingsboard_api_tools/DeviceProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/DeviceProfile.py -------------------------------------------------------------------------------- /thingsboard_api_tools/EntityType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/EntityType.py -------------------------------------------------------------------------------- /thingsboard_api_tools/HasAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/HasAttributes.py -------------------------------------------------------------------------------- /thingsboard_api_tools/TbApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/TbApi.py -------------------------------------------------------------------------------- /thingsboard_api_tools/TbModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/TbModel.py -------------------------------------------------------------------------------- /thingsboard_api_tools/TelemetryRecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/TelemetryRecord.py -------------------------------------------------------------------------------- /thingsboard_api_tools/Tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/Tenant.py -------------------------------------------------------------------------------- /thingsboard_api_tools/User.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/User.py -------------------------------------------------------------------------------- /thingsboard_api_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/__init__.py -------------------------------------------------------------------------------- /thingsboard_api_tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thingsboard_api_tools/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/pyproject.toml -------------------------------------------------------------------------------- /thingsboard_api_tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eykamp/thingsboard_api_tools/HEAD/thingsboard_api_tools/requirements.txt --------------------------------------------------------------------------------