Seequent Developer Portal • Seequent Community • Seequent website
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.
- Python ^3.10
- An application registered in Bentley
pip install evo-blockmodelsSee the evo-sdk-common documentation for information on how to authenticate, then select the organisation, hub and workspace that you would like to use.
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 notebookFor instructions on contributing to the development of this library, please refer to the evo-python-sdk documentation.
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.