- May 28, 2020
-
-
Waldir Pimenta authored
-
- Oct 10, 2019
-
-
RheingoldRiver authored
-
- Dec 09, 2018
-
-
Dan Michael O. Heggø authored
-
- Nov 22, 2018
-
-
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
-
- Jul 03, 2016
-
-
Dan Michael O. Heggø authored
- Adds link to the user guide from readme - Adds a new page to the user guide on "working with files"
-
- Aug 23, 2015
-
-
Dan Michael O. Heggø authored
-