C#調用Python指令碼及使用Python的第三方模組
C調用Python指令碼及使用Python的第三方模組 添加引用庫 C代碼內嵌Python 從檔案中載入Python代碼 使用Python安裝的第三模組
我的首頁 www.csxiaoyao.com
IronPython是一種在.NET上實現的Python語言,使用IronPython就可以在.NET環境中調用Python代碼。 【添加引用庫】
在Visual Studio建立一個工程後,添加引用IronPython.dll和Microsoft.Scripting.dll(位於IronPython的安裝目錄下)。 【C#代碼內嵌Python】
最簡單的使用方式如下:
var engine = IronPython.Hosting.Python.CreateEngine();engine.CreateScriptSourceFromString("print 'hello world!'").Execute();
【從檔案中載入Python代碼】
一般情況下我們還是要把Python代碼單獨寫在檔案中。在工程中建立一個Python檔案,如hello.py,直接建立在發布路徑下即可(也可設定其屬性Copy to Output Directory的值為Copy if newer)。在hello.py下編寫如下代碼:
#無傳回值函數def say_hello(): print "hello!"#有傳回值函數def get_text(): return "text from hello.py"#帶參函數def add(arg1, arg2): return arg1 + arg2
C#代碼如下:
//運行python指令碼var engine = IronPython.Hosting.Python.CreateEngine();var scope = engine.CreateScope();var source = engine.CreateScriptSourceFromFile("hello.py");source.Execute(scope);//調用無傳回值函數var say_hello = scope.GetVariable<Func<object>>("say_hello");say_hello();//調用有傳回值函數var get_text = scope.GetVariable<Func<object>>("get_text");var text = get_text().ToString();Console.WriteLine(text);//調用帶參函數var add = scope.GetVariable<Func<object, object, object>>("add");var result = add(1, 2);Console.WriteLine(result);
【使用Python安裝的第三模組】
python的內建庫可以直接在指令碼中調用,然而第三方庫直接調用會出現以下錯誤(調用第三方RSA):
An unhandled exception of type 'IronPython.Runtime.Exceptions.ImportException' occurred in Microsoft.Dynamic.dllAdditional information: No module named rsa
顯示沒有找到模組,設定sys.path即可,如下:
import syssys.path.append('C:\\Python27\\lib')sys.path.append('C:\\Python27\\lib\\site-packages\\setuptools-12.0.3-py2.7.egg')sys.path.append('C:\\Python27\\lib\\site-packages\\rsa-3.1.1-py2.7.egg')import rsa