forked from emijrp/wikidata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
human.aliases.es.py
122 lines (108 loc) · 4.75 KB
/
human.aliases.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
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/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 time
import pwb
import pywikibot
from wikidatafun import *
def main():
targetlang = 'es'
site = pywikibot.Site('wikidata', 'wikidata')
repo = site.data_repository()
countries = [ #only Spanish spoken countries
'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
]
skip = ''
for country in countries:
urls = [
'https://query.wikidata.org/bigdata/namespace/wdq/sparql?query='+'SELECT%20%3Fitem%0AWHERE%20%7B%0A%09%3Fitem%20wdt%3AP17%20wd%3A'+country+'.%0A%7D', #P17 country
'https://query.wikidata.org/bigdata/namespace/wdq/sparql?query='+'SELECT%20%3Fitem%0AWHERE%20%7B%0A%09%3Fitem%20wdt%3AP495%20wd%3A'+country+'.%0A%7D', #P495 country of origin
'https://query.wikidata.org/bigdata/namespace/wdq/sparql?query='+'SELECT%20%3Fitem%0AWHERE%20%7B%0A%09%3Fitem%20wdt%3AP31%20wd%3AQ5.%0A%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3A'+country+'.%0A%7D', #P27 country of citizenship
]
for url in urls:
url = '%s&format=json' % (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.startswith('Q'):
continue
print('==', q, '==')
if skip:
if skip != q:
print('Skiping until', skip)
continue
else:
skip = ''
item = pywikibot.ItemPage(repo, q)
try: #to detect Redirect because .isRedirectPage fails
item.get()
except:
print('Error while .get()')
continue
aliases = item.aliases
labels = item.labels
if not targetlang in labels:
print('Not label %s found' % (targetlang))
continue
names = [labels[targetlang]]
if targetlang in aliases:
[names.append(x) for x in aliases[targetlang]]
plainnames = []
for name in names:
if not re.search(r'(?i)[ñç\(\)\:]', name):
#avoid producing names like Carlos I de España->Espana
plainnames.append(removeAccents(name))
missingnames = []
for plainname in plainnames:
if not plainname.lower() in [x.lower() for x in names] and \
not plainname.lower() in [y.lower() for y in missingnames]:
if targetlang in aliases.keys():
aliases[targetlang].append(plainname)
else:
aliases[targetlang] = [plainname]
missingnames.append(plainname)
if missingnames:
data = { 'aliases': aliases }
missingnames.sort()
summary = "BOT - Adding %s aliases (%s): %s" % (len(missingnames), targetlang, ', '.join(missingnames))
print(summary.encode('utf-8'))
try:
item.editEntity(data, summary=summary)
except:
print('Error while saving')
continue
print("Finished successfully")
if __name__ == "__main__":
main()