I am currently developing a wiki and will keep posting information into the wiki. However, I’ll have to fetch the information from the wiki using a python code. For example, if I have a wiki page about a company, say Coca Cola, I will need all the information (text) that I have posted on the wiki to be parsed to my python program. Please let me know if there’s a way to do this.
Thanks!
A manner is to download the page with urllib or httplib, then to analyze it with regexes to extract the precise information you want. It may be long, but it’s relatively easy to do.
Maybe there are other solutions to analyze the source of the page, parsers or something like that; I don’t know enough about them.