Page Tree
Other Releases
...
Warning |
---|
After making any changes, click the Apply Changes button. |
...
Must use for .Net developers, the The Python namespace can be used in any script editor inside your project environment (Tasks, Classes and , or CodeBehind) . Basically, all you need is to install Python for .NETinside your project environment. To use the Python namespace, you simply need to install the Python.NET package, available on github.
The Python namespace provides several .Net methods that interact with Python codes and objects. See some of those methods below:
...
Code Block |
---|
public static object FromPython(object value) object value = Python value object returns = NET value |
...
Code Block |
---|
public static string DumpPythonObjectToString(object pythonObject) object pythonObject = Python object. string returns = Dump information of object. |
...
Note |
---|
If you need to install other Python modules and libraries (such as numpy, pythonnet, matplotlib, etc.), you must install them in the same location as the Python Engine (python.exe). |
...