mirror of
https://github.com/OPM/ResInsight.git
synced 2026-07-31 16:58:18 -05:00
11 lines
288 B
Python
11 lines
288 B
Python
#######################################
|
|
# This example connects to ResInsight
|
|
#######################################
|
|
import rips
|
|
|
|
resinsight = rips.Instance.find()
|
|
|
|
if resinsight is None:
|
|
print('ERROR: could not find ResInsight')
|
|
else:
|
|
print('Successfully connected to ResInsight') |