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

15,392

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.

Share:
15,392
ak2492
Author by

ak2492

Updated on July 13, 2022

Comments

  • ak2492
    ak2492 almost 2 years

    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.