Hi,
I recently started using pywikipedia-scripts again after some time-out. Now when i try to output page content to screen using
gen = pagegenerators.CategorizedPageGenerator(cat) for page in gen: text = page.get() print page.title
The correct output is (for example for a page with the name 1095)
<bound method Page.site of Page{[[1095]]}>
Can anyone tell me how to eliminate the
<bound method Page.site of Page{[[]]}>
I only need the page name
thnks in advance
Ruud