forked from emijrp/wikidata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simbad.py
193 lines (179 loc) · 4.84 KB
/
simbad.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2021 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 random
import re
import sys
import time
import urllib.parse
import pywikibot
from wikidatafun import *
constellations = [
"Q6940204",
"Q8667",
"Q8675",
"Q8860",
"Q10441",
"Q10457",
"Q10435",
"Q10481",
"Q10574",
"Q10571",
"Q10473",
"Q10563",
"Q10578",
"Q8921",
"Q8842",
"Q10580",
"Q8679",
"Q10517",
"Q10448",
"Q8837",
"Q8853",
"Q10576",
"Q10535",
"Q10584",
"Q8923",
"Q8913",
"Q10511",
"Q10546",
"Q10464",
"Q9256",
"Q10484",
"Q10416",
"Q9289",
"Q10513",
"Q10428",
"Q10586",
"Q8839",
"Q8844",
"Q8849",
"Q9285",
"Q10470",
"Q10538",
"Q10486",
"Q10542",
"Q10503",
"Q10521",
"Q10446",
"Q9302",
"Q9286",
"Q10529",
"Q8864",
"Q8906",
"Q10476",
"Q10443",
"Q10437",
"Q9253",
"Q8865",
"Q10406",
"Q10425",
"Q8866",
"Q10403",
"Q10433",
"Q10468",
"Q10508",
"Q10498",
"Q10515",
"Q10506",
"Q10582",
"Q10488",
"Q9282",
"Q10430",
"Q8910",
"Q10413",
"Q10452",
"Q10422",
"Q10492",
"Q10570",
"Q8918",
"Q9251",
"Q10409",
"Q9305",
"Q10450",
"Q10478",
"Q10519",
"Q10565",
"Q8832",
"Q10438",
"Q10567",
"Q10525",
]
def main():
site = pywikibot.Site('wikidata', 'wikidata')
repo = site.data_repository()
method = 'all'
if len(sys.argv) > 1:
method = sys.argv[1]
if method == 'all' or method == 'method1':
#method 1
random.shuffle(constellations)
for constellation in constellations:
skip = ''
query = """
SELECT DISTINCT ?item
WHERE {
#?item wdt:P31 wd:Q523.
?item wdt:P3083 ?simbadid.
?item wdt:P59 wd:%s.
OPTIONAL { ?item rdfs:label ?label filter(lang(?label) = "es") }
FILTER(!BOUND(?label))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
""" % (constellation)
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
if item.claims:
if 'P528' in item.claims:
if not labels['en'] in [claim.getTarget() for claim in item.claims['P528']]:
print("Label (en) not found in claim P528")
continue
labels['es'] = labels['en']
summary = 'BOT - Adding labels (1 languages): es'
data = { 'labels': labels }
print(summary)
time.sleep(0.01)
try:
item.editEntity(data, summary=summary)
except:
print('Error while saving')
continue
if __name__ == '__main__':
main()