-
Notifications
You must be signed in to change notification settings - Fork 0
Python SDK Quickstart
Chris Day edited this page Feb 1, 2026
·
1 revision
Provide a minimal, reusable setup snippet for the official Python client SDK.
pip install ontoportal-clientfrom ontoportal_client import ClientConfig, OntoPortalClient
config = ClientConfig(api_key="YOUR_KEY")
client = OntoPortalClient(config)- The SDK reads environment variables via
ClientConfig.from_env()if you prefer not to hard-code keys. - Default base URL is
https://data.bioontology.org.
- Home
- Getting Started
- Architecture Overview
- OpenAPI Specification
- Python SDK Quickstart
- Endpoint Guides
- Endpoint Guides - Ontologies
- Endpoint Guides - Classes
- Endpoint Guides - Search
- Endpoint Guides - Annotator
- Endpoint Guides - Recommender
- Usage Patterns
- Client SDK Documentation
- Data and Semantics
- Pagination and Hypermedia
- Error Handling and Limits
- Testing and Validation
- Release and Versioning
- Contributing Guide
- Reference Appendix