Rogii Solo is a Python SDK designed to make data scientists' work with Solo easier.
Python 3.10
- Install the package using
pip install rogii-solo
command. - Generate access credentials on the landing page and copy the initialization string.
- Initialize the client by pasting the initialization string in the constructor.
- Set the project you wish to work with by name or UUID.
from rogii_solo import SoloClient
solo_client = SoloClient(client_id='my-client-id', client_secret='my-client-secret')
project = solo_client.set_project_by_name('My project')
wells = project.wells
wells_data = wells.to_dict() # List of dicts
wells_df = wells.to_df() # DataFrame
Please check the SDK documentation in our Knowledge Base.