我需要在C#中使用MediaWiki解析器
(http://www.mediawiki.org/wiki/Alternative_parsers)
既然没有,我真的想要一个MediaWiki解析器,而不是像WikiPlex那样的其他解析器,我正在研究使用另一种语言中的一些现有解析器,并且能够成功调用kiwi解析器来实现这一点。但是,问题是它无法正确处理Unicode / UTF-8。
现在,我想使用这个脚本:
http://www.connellybarnes.com/code/python/mw2html
并通过IronPython使用它。
我从这里使用IronPython 2.7:
http://ironpython.net/
我下载了二进制zip文件(不是安装程序)。
然后我以本教程为基础:
http://www.codeproject.com/KB/cs/IronPythonMethod_CShap.aspx
这就是我所做的:
using System;
using IronPython.Hosting;
namespace IronPythonMethodInvokationDemo
{
class Program
{
// http://stackoverflow.com/questions/6557494/referencing-python-import-assemblies-when-calling-from-ironpython-in-c
static void Main(string[] args)
{
//Microsoft.Scripting.Hosting.ScriptEngine m_engine = Python.CreateEngine(DefaultEngineOptions());
Microsoft.Scripting.Hosting.ScriptEngine m_engine = Python.CreateEngine();
System.Collections.Generic.ICollection<string> paths = m_engine.GetSearchPaths();
paths.Add(@"D:\username\Documents\Visual Studio 2010\Projects\IronPython\IronPython-Bin-2.7\IronPython-2.7\Lib"); // modules path
paths.Add(@"D:\username\Documents\Visual Studio 2010\Projects\IronPython\IronPython-Bin-2.7\IronPython-2.7"); // ipy.exe path
m_engine.SetSearchPaths(paths);
//Step 1:
//Creating a new script runtime
//var ironPythonRuntime = Python.CreateRuntime();
var ironPythonRuntime = m_engine.Runtime;
try
{
//Step 2:
//Load the Iron Python file/script into the memory
//Should be resolve at runtime
//dynamic loadIPython = ironPythonRuntime.UseFile("first.py");
//ironPythonRuntime.GetBuiltinModule();
dynamic loadIPython = ironPythonRuntime.UseFile("mw3html.py");
//Step 3:
//Invoke the method and print the result
/*
Console.WriteLine(
string.Format("Addition result from IronPython method for {0} and {1} is {2}",
100,200, loadIPython.add(100, 200))
);
*/
Console.WriteLine( string.Format("Result for IronPython main method: {0}", loadIPython.main()) );
} // End Try
catch (System.IO.FileNotFoundException ex)
{
Console.WriteLine(ex.Message);
} // End Catch
Console.ReadKey(true);
} // End Sub Main
} // End Class Program
} // End Namespace IronPythonMethodInvokationDemo
如果我使用first.py,那么一切正常。 现在,使用mw2html.py,我得到了一个
ironPythonRuntime.UseFile上的KeyNotFoundException(“mw3html.py”);对于 关键“”......
有谁知道这意味着什么?
答案 0 :(得分:0)
继续发表评论:IronPython中不存在socket.py。相反,socket
模块是用C#编写的,并且在IronPython.Modules.dll中。确保它也被您的项目引用并与IronPython.dll在同一目录中。