I am currently developing an app which is primarily based in .NET
but need to integrate some math based code which is in Python3
and contains many references to the numpy
, scipy
and pandas
packages.
I have read that IronPython
will not support these packages and that pythonnet
cannot be embedded into a C#
application to use from .net.....
The python functions need to receive arguements of type dictionary, list and user defined class from the c# application and then return dictionaries that can be interpreted by the c# code.
Is there a way to integrate the two code bases in their current format or to maintain the functionality does the python code need to be re-scripted into another language?