-
Notifications
You must be signed in to change notification settings - Fork 8
/
commons_wikidata_search2.py
266 lines (247 loc) · 7.63 KB
/
commons_wikidata_search2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Move commons category sitelinks to category items where needed
# Mike Peel 10-Jun-2018 v1
from __future__ import unicode_literals
import pywikibot
from pywikibot.data import api
import numpy as np
import time
import string
from pywikibot import pagegenerators
import urllib
import pprint
import csv
import random
from pibot_functions import *
database = True
manual = True
maxnum = 1000000
usetemplate = 0
usecategory = 0
wikidata_site = pywikibot.Site("wikidata", "wikidata")
repo = wikidata_site.data_repository() # this is a DataSite object
commons = pywikibot.Site('commons', 'commons')
# From https://gist.github.com/ettorerizza/7eaebbd731781b6007d9bdd9ddd22713
def search_entities(site, itemtitle):
params = { 'action' :'wbsearchentities',
'format' : 'json',
'language' : 'en',
'type' : 'item',
'search': itemtitle}
request = api.Request(site=site, parameters=params)
return request.submit()
def search_entities_es(site, itemtitle):
params = { 'action' :'wbsearchentities',
'format' : 'json',
'language' : 'es',
'type' : 'item',
'search': itemtitle}
request = api.Request(site=site, parameters=params)
return request.submit()
def get_entities(site, wdItem):
request = api.Request(site=site,
action='wbgetentities',
format='json',
ids=wdItem,
languages='en|fr',
props='sitelinks/urls|descriptions|aliases|labels',
sitefilter='enwiki|frwiki')
return request.submit()
def prettyPrint(variable):
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(variable)
def runimport(targetcat):
print(targetcat.title())
try:
wd_item = pywikibot.ItemPage.fromPage(targetcat)
item_dict = wd_item.get()
print('http://www.wikidata.org/wiki/'+wd_item.title())
# targetcat.touch()
return 0
except:
print('No existing link')
# searchkeys = ['map', 'Map', 'interior', 'Interior', 'inside', 'Inside']#, 'taken', 'Taken']
# for searchkey in searchkeys:
# if searchkey in targetcat.title():
# print(targetcat.title())
# input('continue?')
# break
searchname = targetcat.title().replace('Category:','')
searchname2 = searchname.split('(', 1)[0]
if searchname2 != '':
searchname = searchname2
wikidataEntries = search_entities(wikidata_site, searchname)
wikidataEntries_cat = search_entities(wikidata_site, 'Category:'+searchname)
# wikidataEntries_es = search_entities_es(wikidata_site, searchname)
results = wikidataEntries['search'] + wikidataEntries_cat['search']
# prettyPrint(results)
if results != []:
data = {'sitelinks': [{'site': 'commonswiki', 'title': targetcat.title()}]}
print(targetcat.text)
# results = wikidataEntries['search']
# prettyPrint(results)
numresults = len(results)
for i in reversed(range(0,numresults)):
qid = results[i]['id']
print(qid)
try:
candidate_item = pywikibot.ItemPage(repo, qid)
candidate_item_dict = candidate_item.get()
except:
print('Huh - no page found')
skip = 0
try:
p31 = candidate_item_dict['claims']['P31']
for clm in p31:
if 'Q4167410' in clm:
skip = 1
except:
null = 0
if skip == 1:
continue
incat = 0
try:
sitelink = get_sitelink_title(candidate_item_dict['sitelinks']['commonswiki'])
except:
try:
existing_id = candidate_item_dict['claims']['P910']
print('P910 exists, following that.')
for clm2 in existing_id:
candidate_item = clm2.getTarget()
candidate_item_dict = candidate_item.get()
print(candidate_item.title())
except:
null = 0
# Try the sitelink check again
try:
sitelink = get_sitelink_title(candidate_item_dict['sitelinks']['commonswiki'])
continue
except:
# No existing sitelink found, add the new one
null = 0
try:
p18 = candidate_item_dict['claims']['P18']
for clm in p18:
title = clm.getTarget()
print(title.title())
page = pywikibot.Page(commons, title.title())
test = page.get()
if '[['+targetcat.title()+']]' in test:
incat = 1
continue
else:
incat = 2
# if incat == 1:
# continue
except:
print('No image found')
try:
if manual:
print("\n\n")
# prettyPrint(candidate_item_dict)
print(data)
try:
print(candidate_item_dict['labels']['en'])
except:
print('')
try:
print(candidate_item_dict['descriptions']['en'])
except:
print('')
print('http://www.wikidata.org/wiki/'+qid)
print('http://commons.wikimedia.org/wiki/'+targetcat.title().replace(" ",'_'))
if incat == 1:
print('Image is in category')
elif incat == 2:
print('Image not in category')
else:
print('No image')
# if incat == 1:
text = input("Save? ")
if text == 'y':
candidate_item.editEntity(data, summary=u'Add commons sitelink')
targetcat.touch()
return 1
else:
continue
else:
if incat == 1:
candidate_item.editEntity(data, summary=u'Add commons sitelink based on label and image')
return 1
else:
return 0
except:
print('Edit failed')
# return 0
return 0
existing_uses = {}
if database:
print('Loading database...')
with open('commons_wikidata_infobox_uses.csv', mode='r') as infile:
reader = csv.reader(infile)
existing_uses = {rows[0] for rows in reader}
print('Database loaded!')
nummodified = 0
if usetemplate:
templates = ['South African Heritage Site']
template = pywikibot.Page(commons, 'Template:'+templates[0])
targetcats = template.embeddedin(namespaces='14')
for targetcat in targetcats:
print(targetcat.title())
if targetcat.title() in existing_uses:
print('In database')
continue
else:
runimport(targetcat)
elif usecategory:
# targetcats = ['Category:Galleries, Libraries, Archives and Museums (GLAM)']
# targetcats = ['Category:Canary Islands']
# targetcats = ['Category:Astronomy']
# targetcats = ['Category:COVID-19 pandemic']
targetcats = ['Category:Uses of Wikidata Infobox with no item']#'Category:CommonsRoot']
# targetcats = ['Category:Santa Cruz de Tenerife']
# targetcats = ['Category:Cultural heritage monuments in Norway with known IDs']#['Category:São Vicente (São Paulo)']
# New style of category walker
numchecked = 0
catschecked = 0
i = 0
seen = set(targetcats)
active = set(targetcats)
while active:
i+=1
next_active = set()
for item in sorted(active):
cat = pywikibot.Category(commons,item)
if cat.title() not in existing_uses:
nummodified += runimport(cat)
else:
print('Already in database')
numchecked += 1
print(str(nummodified) + " - " + str(numchecked) + "/" + str(len(seen)) + "/" + str(len(active)) + "/" + str(len(next_active)))
# See if there are subcategories that we want to check in the future
if i == 1:
for result in pagegenerators.SubCategoriesPageGenerator(cat, recurse=False):
if result.title() not in seen:
seen.add(result.title())
next_active.add(result.title())
temp = list(next_active)
random.shuffle(temp)
active = set(temp)
if nummodified >= maxnum:
print('Reached the maximum of ' + str(maxnum) + ' entries modified, quitting!')
break
else:
# Pick random categories
while nummodified < maxnum:
targets = pagegenerators.RandomPageGenerator(total=500, site=commons, namespaces='14')
for target in targets:
print(target.title())
if target.title() not in existing_uses:
if 'redirect' not in target.text.lower():
nummodified += runimport(target)
print(nummodified)
if nummodified >= maxnum:
print('Reached the maximum of ' + str(maxnum) + ' entries modified, quitting!')
break
# EOF