Skip to content

Latest commit

 

History

History
77 lines (54 loc) · 3.44 KB

File metadata and controls

77 lines (54 loc) · 3.44 KB

Seequent logo

PyPI - Version

Seequent Developer PortalSeequent CommunitySeequent website

Evo Block Model API Client

The Block Model API provides the ability to manage and report on block models in your Evo workspaces. Enable your product with Evo connected workflows by integrating with the Seequent Block Model API.

The Block Model API supports a range of sub-blocking options, and both full and partial updates to block models, including updates of specified columns and/or sub-volumes. Block models are versioned, and the service supports reporting on the material content of current or previous versions, and comparing the content between versions of a block model.

Pre-requisites

Installation

pip install evo-blockmodels

Usage

See the evo-sdk-common documentation for information on how to authenticate, then select the organisation, hub and workspace that you would like to use.

Interacting with the Evo Block Model API

To get up and running quickly with the Evo Block Models SDK, start by configuring your environment and API connector.

from evo.blockmodels import BlockModelAPIClient

service_client = BlockModelAPIClient(environment, connector)
service_health = await service_client.get_service_health()
service_health.raise_for_status()

For some interactive Jupyter notebook examples, see the examples folder.

To run the notebooks in your browser:

uv run --all-groups jupyter notebook

Contributing

For instructions on contributing to the development of this library, please refer to the evo-python-sdk documentation.

License

The Python SDK for Evo is open source and licensed under the Apache 2.0 license..

Copyright © 2025 Bentley Systems, Incorporated.

Licensed under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.