Command-line utility to retrieve a Moin page's raw text. Non-RPC so generally needs to be run as your webserver user. Written by MaxCampos. {{attachment:wikiget.py}} = Alternatives = Using wget - will not work for non ascii page names: {{{ wget http://mydomain/mywiki/PageName?action=raw }}} Using urllib, this will work with any unicode name: {{{#!python import urllib pageName = urllib.quote('דף עברי') url = urllib.urlopen('http://mydomain/mywiki/%s?action=raw' % pageName) text = unicode(url.read(), 'utf-8') }}}