Hello,
I am quite raw to pywikipedia, I need to get list of cat articles
it works ok on wikipedia, but not on the wiki of my interest though it gets/writes page text from this wiki ok for me http://studento.vikis.lt/wiki/index.php/Kategorija:Programa configs: http://popmokslas.projektas.lt/etc/pywikipedia/
import catlib cat = catlib.Category(site,u'Programa') print cat
for page in cat.articles(recurse = True): print page
outputs: [[Kategorija:Programa]] Getting [[Kategorija:Programa]]...
the same with pagegenerators.CategorizedPageGenerator(cat)
--- Any ideas? Thanks in advance