You've already forked IPyConsole
mirror of
https://github.com/izzy2lost/IPyConsole.git
synced 2026-03-10 11:52:51 -07:00
16 lines
291 B
C#
16 lines
291 B
C#
|
|
using IronPython.Hosting;
|
||
|
|
|
||
|
|
namespace Core
|
||
|
|
{
|
||
|
|
public static class RunPy
|
||
|
|
{
|
||
|
|
public static void Run()
|
||
|
|
{
|
||
|
|
var eng = Python.CreateEngine();
|
||
|
|
|
||
|
|
eng.ExecuteFile("C:\\Users\\xuanit\\Code\\Learning\\IPyConsole\\IPyConsole\\API\\API.py");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|