Easily access the TeamDB Web API.
Project description
teamdbapi
This module enables you to easily access the TeamDB Web API.
- Package version: 3.2.0
- TeamDB Web API version: 2.0
Requirements.
- Python 3.4+
- TeamDB 3.2.0
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
# Create a Configuration object
configuration = teamdbapi.Configuration()
configuration.host = "http://localhost:9001" # Replace with your the TeamDB API address if different
# Create an instance of the Client API
client_api = teamdbapi.ApiClient(configuration)
# Create an instance of the Assembly API using the client_api
assembly_api = teamdbapi.AssemblyApi(client_api)
# Try to execute the request
try:
# Get response with http info (Content, HTTP Status Code, HTTP Header)
result = assembly_api.select_current_assembly_with_http_info(assembly_id = "6189993b-ad4d-4c41-8268-8419a63e5554")
print(result)
# Get only response content
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file teamdbapi-3.2.0.tar.gz.
File metadata
- Download URL: teamdbapi-3.2.0.tar.gz
- Upload date:
- Size: 125.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
348bdb530b6204a05c7d3eb85b41ee2536e5f4a90f529b8dc379c7e24eaab54e
|
|
| MD5 |
ecec0acc02d24a7845276b23aa989015
|
|
| BLAKE2b-256 |
a7322d38df25576da707d4038dac77510625f6182377a6ac7e5fd95f02518c5a
|
File details
Details for the file teamdbapi-3.2.0-py3-none-any.whl.
File metadata
- Download URL: teamdbapi-3.2.0-py3-none-any.whl
- Upload date:
- Size: 247.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37ef5cfc6fbf3bde49e723e7c07133b5d4a13288967891b6af191c4d753737b8
|
|
| MD5 |
b0f67a4ab921efe7e177713e850616cb
|
|
| BLAKE2b-256 |
36e7534cc33ac2ef889cebb0fd5819666658523edfd2330733ffe43252cc2175
|