C#調用Python指令碼及使用Python的第三方模組

來源:互聯網
上載者:User
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
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.