Skip to content
Snippets Groups Projects
  1. Jul 17, 2024
  2. May 18, 2024
  3. May 06, 2024
  4. Sep 05, 2023
  5. Feb 15, 2023
  6. Sep 07, 2020
  7. May 28, 2020
  8. Sep 26, 2019
  9. Aug 02, 2019
  10. Apr 11, 2019
  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. Aug 21, 2016
  17. Jul 03, 2016
  18. Aug 23, 2015
Loading