-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall-human-knowledge.py
59 lines (48 loc) · 1.96 KB
/
all-human-knowledge.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This script is deprecated
# New one: https://github.com/emijrp/wikidata/blob/master/all.human.knowledge.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2016 emijrp <emijrp@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import re
import time
import urllib
import pywikibot
def main():
site = pywikibot.Site('en', 'wikipedia')
page = pywikibot.Page(site, 'User:Emijrp/All human knowledge')
wtext = page.text
newtext = page.text
autolists = re.findall(r'https://tools.wmflabs.org/autolist/index\.php\?wdq=.*?&run=Run', wtext)
for autolist in autolists:
time.sleep(1)
autolist_ = autolist + '&chunk_size=100'
print(autolist_)
try:
f = urllib.request.urlopen(autolist_)
html = f.read().decode('utf-8')
num = re.findall(r'<p>Getting WDQ data\.\.\. ([\d\,]+) items loaded.</p>', html)[0]
num = re.sub(',', '', num)
print(num)
except:
print('Error retrieving',autolist_)
continue
autolist_r = re.sub(r'\?', '\?', autolist)
newtext = re.sub(r'\[%s \d+\]' % (autolist_r), '[%s %s]' % (autolist, num), newtext)
if wtext != newtext:
pywikibot.showDiff(wtext, newtext)
page.text = newtext
page.save('BOT - Updating figures')
if __name__ == '__main__':
main()