forked from emijrp/wikidata
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhuman.labels.es.py
109 lines (99 loc) · 3.32 KB
/
human.labels.es.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2017 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 sys
import time
import urllib.parse
import pwb
import pywikibot
from wikidatafun import *
def main():
site = pywikibot.Site('wikidata', 'wikidata')
repo = site.data_repository()
skip = ''
countryqq = [
'Q414', #Argentina
'Q750', #Bolivia
'Q298', #Chile
'Q739', #Colombia
'Q800', #Costa Rica
'Q241', #Cuba
'Q786', #Dominican Republic
'Q736', #Ecuador
'Q792', #El Salvador
'Q774', #Guatemala
'Q783', #Honduras
'Q96', #Mexico
'Q811', #Nicaragua
'Q804', #Panama
'Q733', #Paraguay
'Q419', #Peru
'Q29', #Spain
'Q77', #Uruguay
'Q717', #Venezuela
]
for countryq in countryqq:
query = """
SELECT ?item
WHERE {
?item wdt:P31 wd:Q5.
?item wdt:P27 wd:%s ;
wdt:P27 ?instance .
?item rdfs:label ?labelen .filter(lang(?labelen) = "en").
OPTIONAL { ?item rdfs:label ?labeles filter(lang(?labeles) = "es") }.
FILTER(!BOUND(?labeles)).
}
GROUP BY ?item
HAVING(COUNT(?instance) = 1)
""" % (countryq)
url = 'https://query.wikidata.org/bigdata/namespace/wdq/sparql?query=%s' % (urllib.parse.quote(query))
url = '%s&format=json' % (url)
print("Loading...", url)
sparql = getURL(url=url)
json1 = loadSPARQL(sparql=sparql)
for result in json1['results']['bindings']:
q = 'item' in result and result['item']['value'].split('/entity/')[1] or ''
if not q:
break
print('\n== %s ==' % (q))
if skip:
if q != skip:
print('Skiping...')
continue
else:
skip = ''
item = pywikibot.ItemPage(repo, q)
try: #to detect Redirect because .isRedirectPage fails
item.get()
except:
print('Error while .get()')
continue
labels = item.labels
if 'es' in labels:
continue
if not 'en' in labels:
continue
labels['es'] = labels['en']
summary = 'BOT - Adding labels (1 languages): es'
data = { 'labels': labels }
print(summary)
try:
item.editEntity(data, summary=summary)
except:
print('Error while saving')
continue
if __name__ == '__main__':
main()