GA4GH TRS Client
Project description
TRS-cli
Client for implementations of the Global Alliance for Genomics and Health (GA4GH) Tool Registry Service API schema, including support for additional endpoints defined in ELIXIR Cloud & AAI's generic TRS-Filer TRS implementation.
Usage
To use the client import it as follows in your Python code after installation:
Create client instance
Via TRS hostname
A client instance can be created by specifying the domain name of a TRS instance, including the URL schema:
from trs_cli.client import TRSClient
client = TRSClient(uri="https://my-trs.app")
# Client instantiated for URL: https://my-trs.app:443/ga4gh/trs/v2
Fully spec-compliant TRS implementations will always be
available at https URLs, served at port 443 and at the base path
ga4gh/trs/v2. However, to allow the client to be used against development
versions of TRS implementations, http URLs are supported as well (default
port 80), and the port and base path at which the API endpoints are served
can be overridden with the port and base_path arguments:
from trs_cli.client import TRSClient
client = TRSClient(
uri="http://my-trs.app",
port=8080,
base_path="my/api/route",
)
# Client instantiated for URL: http://my-trs.app:8080/my/api/route
Via TRS URI
Clients can also be created by passing a hostname-based TRS URI:
from trs_cli.client import TRSClient
client = TRSClient(uri="trs://my-trs.app/SOME_TOOL")
# Client instantiated for URL: https://my-trs.app:443/ga4gh/trs/v1
NOTE: Only the hostname part of the TRS URI is evaluated, not the tool ID.
Port and base path can be overridden as described above. In addition, the
client constructor also defines the use_http flag, which instantiates a
client for an http URL when a TRS URI is passed. The flag has no effect
when a TRS hostname URL is provided instead of a TRS URI:
from trs_cli.client import TRSClient
client = TRSClient(
uri="trs://my-trs.app/SOME_TOOL",
use_http=True,
)
# Client instantiated for URL: http://my-trs.app:443/ga4gh/trs/v1
Access endpoints
NOTES:
- All endpoint access methods require a client instance.
- For accessing endpoints that require authorization, see the dedicated section.
- Responses that do not return the tool ID as a single string return Pydantic models instead. If dictionaries are preferred instead, they can be obtained with
response.dict(). See the Pydantic export documentation for further details.
GET endpoints
Coming soon...
POST & PUT endpoints
Coming soon...
DELETE endpoints
Coming soon...
Authorization
Authorization bearer tokens can be provided either during
client instantiation or when calling an endpoint access method. The bearer
token is sent along as an Authorization header with every request sent from
the instantiated client instance.
NOTE: Whenever a token is specified when calling an API endpoint, the
tokenvariable of that particular client instance is overridden. Thus, subsequent calls from that client will all carry the new token value, unless overridden again.
The following example illustrates this behavior:
from trs_cli.client import TRSClient
# No token passed during client instantiation
client = TRSClient(uri="https://my-trs.app")
# Value of client.token: None
# Token passed during client instantiation
client_2 = TRSClient(
uri="https://my-trs.app",
token="MyT0k3n",
)
# Value of client_2.token: MyT0k3n
API docs
Automatically built API documentation is available.
Installation
You can install TRS-cli in one of two ways:
Installation via package manager
pip install trs_cli
# Or for latest development version:
pip install git+https://github.com/elixir-cloud-aai/TRS-cli.git#egg=trs_cli
Manual installation
git clone https://github.com/elixir-cloud-aai/TRS-cli.git
cd TRS-cli
python setup.py install
Contributing
This project is a community effort and lives off your contributions, be it in the form of bug reports, feature requests, discussions, or fixes and other code changes. Please refer to our organization's contributing guidelines if you are interested to contribute. Please mind the code of conduct for all interactions with the community.
Versioning
The project adopts the semantic versioning scheme for versioning. Currently the service is in beta stage, so the API may change without further notice.
License
This project is covered by the Apache License 2.0 also shipped with this repository.
Contact
The project is a collaborative effort under the umbrella of ELIXIR Cloud & AAI. Follow the link to get in touch with us via chat or email. Please mention the name of this service for any inquiry, proposal, question etc.
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 trs_cli-0.3.0.tar.gz.
File metadata
- Download URL: trs_cli-0.3.0.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a34c213743d37d60bac408939fa2e3f56394cd0bfad9becbbb2e86c39ca170d
|
|
| MD5 |
05a44c5386b1d1a0d0ee4d981aae0c4f
|
|
| BLAKE2b-256 |
71b72f11defde9e19a141cf984002d4b1aac89527242941001befcdfafc9fe51
|
File details
Details for the file trs_cli-0.3.0-py3-none-any.whl.
File metadata
- Download URL: trs_cli-0.3.0-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
503156d15ff4fc037e33977252f3a558b344d0684b6b663380af31ca57599d06
|
|
| MD5 |
f63404070b20e1eb6813c709c914e842
|
|
| BLAKE2b-256 |
92caaeaf61bc318cbb1c42a11499bd8fa21f56917577f5f6d093c7dd72d35bf8
|