Is there any .Net library to parse pages I've retrieved through the mediawiki api? A standard mediawiki parser that could just give titles and the data in pure data would be fine, but I would rather have one that is specifically suited to wiktionary, one that could give me what type of word it is and all of the definitions.

I would prefer not to write my own parser for this. Any suggestions?

link|improve this question

63% accept rate
1  
Which output format are you consuming from the API? There are currently 9 from which to choose... – Cory Dec 5 '11 at 23:40
@Alex there are tonnes of examples, start here: mediawiki.org/wiki/API:Parsing_wikitext – Jeremy Thompson Dec 6 '11 at 4:39
I'm not aware of any API or client library that would provide Wiktionary data in a structured format (as opposed to HTML or raw wikitext). Then again, I haven't really looked much, either. – Ilmari Karonen Feb 7 at 20:51
I spoke too soon -- just after posting the comment above, I found this answer which mentions JWKTL. It's in Java, though, not C#. – Ilmari Karonen Feb 7 at 20:54
feedback

1 Answer

If you get the output in JSON, there are many options you could use, both built in to .NET and external to the framework itself.

If you get the output in XML, again, there are powerful XML manipulation classes within the .NET framework itself and outside of the framework.

You're going to have to be more specific -- provide the format and some example output.

link|improve this answer
I use this: en.wiktionary.org/w/… it comes out with wiki code, the same code that you would type into mediawiki to make the page. – Alex Dec 5 '11 at 23:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.