evo-python-sdk
evo-python-sdk is designed for developers, data scientists, geologists, and geostatisticians who want to work with Seequent Evo APIs and geoscience data.
Getting started with Evo code samples
For detailed information about creating Evo apps, the authentication setup, available code samples, and step-by-step guides for working with the Jupyter notebooks, please refer to the Quick start guide, or code-samples section of the repository.
This comprehensive guide will walk you through everything required to get started with Evo APIs.
Getting started with the Evo SDK
The evo-python-sdk contains a number of sub-packages. You may choose to install the evo-sdk package, which includes all sub-packages and optional dependencies (e.g. Jupyter notebook support), or choose a specific package to install:
| Package | Version | Description |
|---|---|---|
| evo-sdk | A metapackage that installs all available Seequent Evo SDKs, including Jupyter notebook examples. | |
| evo-sdk-common | A shared library that provides common functionality for integrating with Seequent's client SDKs. | |
| evo-files | A service client for interacting with the Evo File API. | |
| evo-objects | Typed Python classes and an API client for geoscience objects — points, grids, variograms, and more. | |
| evo-colormaps | A service client to create colour mappings and associate them to geoscience data with the Colormap API. | |
| evo-blockmodels | Typed block model interactions, reports, and an API client for managing block models in Evo. | |
| evo-widgets | Widgets and presentation layer — rich HTML rendering of typed geoscience objects in Jupyter notebooks. | |
| evo-compute | Run compute tasks (e.g. kriging estimation) via the Compute Tasks API. |
Quick start for notebooks
Once you have an Evo app registered and the SDK installed, you can load and work with geoscience objects in just a few lines of code:
Typed objects like PointSet, BlockModel, and Variogram provide pretty-printed output in Jupyter with clickable links to view your data in Evo. As support for more geoscience objects is added, geologists and geostatisticians can interact with points, variograms, block models, grids, and more — all through intuitive Python classes.
For a hands-on introduction, see the simplified object interactions notebook. For a complete geostatistical workflow including variogram modelling and kriging estimation, see the running kriging compute notebook.
Getting started with SDK development
Now that you have installed the Evo SDK, you can get started by configuring your API connector, and performing a basic API call to list the organizations that you have access to:
For next steps and more information about using Evo APIs directly, see:
evo-sdk-common(discoveryandworkspaces): foundation for all Evo SDKs, including arbitrary API requestsevo-files: File API clientevo-objects: Geoscience Object API clientevo-colormaps: Colormap API clientevo-blockmodels: Block Model API clientevo-compute: Compute Tasks API client- Seequent Developer Portal: guides, tutorials, and API references