GeoPandas
GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial…
Maintainer K-Dense Inc. · Last updated April 1, 2026
Benchling is a cloud platform for life sciences R&D. Access registry entities (DNA, proteins), inventory, electronic lab notebooks, and workflows programmatically via Python SDK and REST API.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/benchling-integration
Skill Snapshot
Source Doc
This skill should be used when:
Python SDK Installation:
## or with Poetry
poetry add benchling-sdk
python
from benchling_sdk.benchling import Benchling
from benchling_sdk.auth.api_key_auth import ApiKeyAuth
benchling = Benchling(
url="https://your-tenant.benchling.com",
auth_method=ApiKeyAuth("your_api_key")
)
python
from benchling_sdk.auth.client_credentials_oauth2 import ClientCredentialsOAuth2
auth_method = ClientCredentialsOAuth2(
client_id="your_client_id",
client_secret="your_client_secret"
)
benchling = Benchling(
url="https://your-tenant.benchling.com",
auth_method=auth_method
)
Key Points:
For detailed authentication information including OIDC and security best practices, refer to references/authentication.md.
Related skills
GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial…
Hypogenic provides automated hypothesis generation and testing using large language models to accelerate scientific discovery. The framework…
Map materials science terms, crystal structures, and sample descriptions to ontology classes and properties. Supports any ontology registere…
SimPy is a process-based discrete-event simulation framework based on standard Python. Use SimPy to model systems where entities (customers,…