- Aug 21, 2024
-
-
Marc Troelitzsch authored
This commit refactors the codebase to consistently use Python 3.6 f-strings for string concatenation and interpolation. BREAKING CHANGE: This update increases the minimum required Python version from 3.5 to 3.6. Python 3.5 reached end-of-life in September 2020 (~4 years ago) and has been dropped from most distributions, so the impact on users should be minimal.
-
- Jan 27, 2024
-
-
Alexandre Detiste authored
-
- Sep 05, 2023
-
-
Marc Troelitzsch authored
-
- 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
-