Skip to content
Snippets Groups Projects
  1. Apr 11, 2019
  2. Dec 12, 2018
  3. Dec 09, 2018
  4. Nov 22, 2018
    • Dan Michael O. Heggø's avatar
      Docs: Fix indentation · 5efebfad
      Dan Michael O. Heggø authored
      5efebfad
    • cpettet's avatar
      Change invocation syntax to relative Site() examples · 7f59df33
      cpettet authored
      This is what is imported at the beginning of the examples.
      This could also be done by changing the import to 'import mwclient'
      rather than 'from mwclient import Site'.
      
      Neither seems more correct but I have tried to follow
      what seems most intended.
      
      >>> from mwclient import Site
      >>> site = mwclient.Site('en.wikipedia.org')
      Traceback (most recent call last):
        File "<stdin>", line 1, in <module>
      NameError: name 'mwclient' is not defined
      
      vs.
      
      >>> site = Site('en.wikipedia.org')
      >>> page = site.pages['Greater guinea pig']
      >>> text = page.text()
      >>> page.exists
      True
      7f59df33
  5. Feb 28, 2018
  6. May 11, 2017
  7. Sep 22, 2016
  8. Sep 20, 2016
  9. Aug 21, 2016
  10. Jul 03, 2016
  11. Aug 23, 2015
Loading