Skip to content
Snippets Groups Projects
  1. Sep 05, 2023
  2. Feb 15, 2023
  3. Sep 07, 2020
  4. May 28, 2020
  5. Oct 10, 2019
  6. Sep 26, 2019
  7. Aug 04, 2019
  8. Aug 02, 2019
  9. Apr 11, 2019
  10. Dec 12, 2018
  11. Dec 09, 2018
  12. 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
  13. Feb 28, 2018
  14. May 11, 2017
  15. Sep 22, 2016
  16. Sep 20, 2016
  17. Aug 21, 2016
  18. Jul 03, 2016
  19. Aug 23, 2015
Loading