
pfctdayelise
By: a guest on Aug 26th, 2008 | syntax:
Python | size: 0.42 KB | hits: 465 | expires: Never
>>> import mwclient
>>> site = mwclient.Site('en.wikipedia.org')
>>> site.login('Pfctdayelise','password')
>>> page = site.Pages['User:Pfctdayelise/Test']
>>> text = page.edit()
>>> print text.encode('utf-8')
Hello.
>>> newtext = "\n\nTesting the write api without logging in.\n"
>>> page.save(text+newtext,summary='testing write api')
>>> print page.edit()
Hello.
Testing the write api without logging in.
>>>