Is it possible, using pywikipedia, to get just the text of the page, without any of the internal links or templates & without the pictures etc.?
|
feedback
|
|
If you mean "I want to get the wikitext only", then look at the
This way you get the complete, raw wikitext from the article. If you want to strip out the wiki syntax, as is transform The main reason for this trouble is that the MediaWiki wiki syntax has no defined grammar. Which makes it really hard to parse, and to strip. I currently know no software that allows you to do this accurately. There's the MediaWiki Parser class of course, but it's PHP, a bit hard to grasp, and its purpose is very very different. But if you only want to strip out links, or very simple wiki constructs use regexes:
and then for piped links:
and so on. But for example, there is no reliable easy way to strip out nested templates from a page. And the same goes for Images that have links in their comments. It's quite hard, and involves recursively removing the most internal link and replacing it by a marker and start over. Have a look at the | |||
feedback
|