我通过 NuGet 将 IronPython 标准库添加到我的 c#.net4 项目中,后来得到了一些参考(IronPython、IronPython.Modules、IronPython.SQLite、IronPython.Wpf、Microsoft.Dynamic、Microsoft.Scripting 等)和“Lib”文件夹包含python模块。现在我正在尝试在我的 file.py 中导入“urllib”模块,但收到 ImportException(没有名为 urllib 的模块)。如何使用 urllib?我应该将 Lib 文件夹复制到项目输出目录还是做其他事情?
UPD:如果我将所需的模块复制到项目输出目录,那么程序可以在没有设置路径的情况下正常工作。我可以使用“urllib”作为嵌入式资源还是在运行时导入它?
谢谢!
资料来源:
public static void Main(string[] args)
{
var url = new Uri("www.microsoft.com");
var r = PythonHelper.Get(url);
}
public static class PythonHelper
{
public static string Get(Uri url)
{
var programPath = @"PySources\GetPage.py";
var py = new Py(programPath);
py.Scope.SetVariable("url", url.ToString());
py.Source.Execute();
var result = py.Scope.GetVariable<string>("result");
return result;
}
private class Py
{
public ScriptScope Scope { get; private set; }
public ScriptSource Source { get; private set; }
public Py(string pyPath)
{
var pyEngine = Python.CreateEngine();
Scope = pyEngine.CreateScope();
Source = pyEngine.CreateScriptSourceFromFile(pyPath);
}
public void Execute()
{
Source.Execute(Scope);
}
}
}
GetPage.py:
#!/usr/bin/env python
# -*- coding: windows-1251 -*-
#coding=windows-1251
#encoding=windows-1251
import clr
clr.AddReference("IronPython")
clr.AddReference('IronPython.Modules')
import urllib
user_agent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11"
headers = { 'User-Agent' : user_agent }
result = urllib.urlopen(url, '' ,headers).read().decode('utf-8')