How to run Python script from Fsharp module

When writing the fsharp module, I realized the need to make a python script call. - It is impossible to switch my fsharp module to python, it will break the infrastructure created - It is impossible to move the python functionality to fsharp, since it would be impossible to convert all the nuances / efficiency of the code.

Any recommendations on how to call a python script from the fsharp module by passing a couple of parameters (string values) and returning the response of the string value?

+5
source share
1 answer

Try the Nuget Python package for .NET. The Nuget link is here: https://www.nuget.org/packages/pythonnet/2.3.0-py35-dotnet and includes links to the project on github.

+2
source

Source: https://habr.com/ru/post/1260225/


All Articles