Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to integrate Python Code with C#.Net Core language? [closed]

Am trying to integrate python code in my .net core application for data analysis and some machine learning classification. How can I do this the best way?

Note: I don't want to execute scripts with IronPython. I already tried that before.

like image 837
ak2492 Avatar asked Aug 23 '18 20:08

ak2492


Video Answer


1 Answers

If IronPython isn't a good match, Python for .Net might work for you. It integrates the CPython runtime (and thus any Python libraries, including native libraries that run under CPython) into your .Net process. .Net objects can call Python objects, and vice versa, without too much trouble. I've used it to integrate Python and C#-coded tools together behind a single WPF UI.

like image 192
antlersoft Avatar answered Sep 19 '22 01:09

antlersoft