| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
OMPython is a Python interface that uses ZeroMQ or CORBA (omniORB) to communicate with OpenModelica.
Installation using pip is recommended.
Install the latest OMPython master by running:
python -m pip install -U https://github.com/OpenModelica/OMPython/archive/master.zipInstall the version packed with your OpenModelica installation by running:
cd %OPENMODELICAHOME%\share\omc\scripts\PythonInterface
python -m pip install -U .To Install the latest version of the OMPython master branch only, previously cloned into <OMPythonPath>, run:
cd <OMPythonPath> python -m pip install -U .
Running the following commands should get you started
import OMPython
help(OMPython)from OMPython import OMCSessionZMQ
omc = OMCSessionZMQ()
omc.sendExpression("getVersion()")or read the OMPython documentation online.
| Back | FazBrowse Home | New Git URL |