ResInsight/GrpcInterface/Python/rips/PythonExamples/instance_example.py
2021-01-26 20:48:01 +01:00

12 lines
291 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")