teamdbapi
This module enables you to easily access the TeamDB Web API.
- Package version: 3.3.0
- TeamDB Web API version: 2.0
Requirements.
Installation and usage
pip install
Install via pip.
pip install teamdbapi
Then import the package:
import teamdbapi
Getting Started
Please follow the installation procedure and then run the following:
import teamdbapi
from teamdbapi.rest import ApiException
configuration = teamdbapi.Configuration()
configuration.host = "http://localhost:9001"
client_api = teamdbapi.ApiClient(configuration)
assembly_api = teamdbapi.AssemblyApi(client_api)
try:
result = assembly_api.select_current_assembly_with_http_info(assembly_id = "6189993b-ad4d-4c41-8268-8419a63e5554")
print(result)
result = assembly_api.select_current_assembly(assembly_id = "6189993b-ad4d-4c41-8268-8419a63e5554")
print(result)
except ApiException as e:
print("Exception when selecting the current assembly : %s\n" % e)
Documentation for API Endpoints
With a TeamDB Client, check the documentation at http://localhost:9001 (Default value for the TeamDB Web API URL)
Documentation For Authorization
Endpoints are subject to the same authorization as in TeamDB.
Author
support@trackside.fr