Launch RSSeismic from Python#
Start RSSeismic with the scripting server enabled, then connect and ping from Python.
1from rsseismic import RSSeismicApplication
2
3RSSeismicApplication.startApplication(port=60058)
4app = RSSeismicApplication(port=60058)
5app.ping()
6
7print("OK")
8app.close()
9# RSSeismic window stays open; only the Python gRPC client closes