Skip to content

Instantly share code, notes, and snippets.

@thibaut-d
thibaut-d / 1-modify-a-wikipage.py
Last active March 2, 2019 22:47
Cheatsheet for Pywikibot from the doc
import pywikibot
wikidata_site = pywikibot.Site("wikidata", "wikidata")
wikidata_repo = wikidata_site.data_repository()
page = pywikibot.Page(wikidata_site, 'Wikidata:WikiProject_Materials/Test')
print(page.exists())
print(page.text))