-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_requests.py
266 lines (185 loc) · 8.86 KB
/
api_requests.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
import requests
import json
from unidecode import unidecode
from log import log
import params
import helpers
# API URL y ENDPOINTS
API_URL = 'https://api.openalex.org'
# Parámetros de la API #
PER_PAGE = 'per-page'
# 200 resultados por página es el límite de la api, pero en algunas peticiones esto rompe y el servidor no responde
# ej.: https://api.openalex.org/works?filter=author.id:A2162365789,type:journal-article&page=1&per-page=200
PER_PAGE_WORKS_VALUE = 20
PER_PAGE_AUTHORS_VALUE = 100
LIMIT_AUTHORS_PAGES = 20
SEARCH = 'search'
MAILTO = 'mailto'
FILTER = 'filter'
PAGE = 'page'
names_variation_list = []
# abrimos el listado de nombres sin acentos
f = open('nombres-acento.json', encoding="utf8")
data_names_accents = json.load(f)
# Por cada nombre, creamos su versión sin tildes y guardamos ambas en una lista
for i in data_names_accents:
names_variation_list.append([i, unidecode(i)])
surnames_variation_list = []
f = open('apellidos-acento.json', encoding="utf8")
data_surnames_accents = json.load(f)
# Por cada nombre, creamos su versión sin tildes y guardamos ambas en una lista
for i in data_surnames_accents:
surnames_variation_list.append([i, unidecode(i)])
COUNT = 0
def get_author(author, search_type='main', page=1):
global COUNT
search = []
def create_accent_variation(surname, name):
if params.use_accent_variations == False:
search.append(f'{surname} {name}')
else:
# separamos el string en palabras
accented_strings = []
for original_surname in surname.split(' '):
modified_string = original_surname
# reemplazamos apellidos
for s in surnames_variation_list:
surname_with_accents = s[0]
surname_no_accents = s[1]
if surname_no_accents.lower() == original_surname.lower():
modified_string = surname_with_accents
accented_strings.append(modified_string)
for original_name in name.split(' '):
modified_string = original_name
# Buscamos cada uno de los nombres del autor en el listado de nombres con acentos
for n in names_variation_list:
name_with_accents = n[0]
name_no_accents = n[1]
# Si hay un matcheo, hacemos reemplazo del nombre poniendo la versión con tildes
if name_no_accents.lower() == original_name.lower():
modified_string = name_with_accents
accented_strings.append(modified_string)
accented_strings = ' '.join(accented_strings)
search.append(accented_strings)
# Si tiene acentos el nombre, los removemos y lo añadimos a la búsqueda como alternativa
if helpers.has_accents(accented_strings):
search_without_accents = helpers.remove_accents(accented_strings)
search.append(search_without_accents)
variations = author.split('|')
for variation in variations:
# separamos en la coma que está luego del apellido
a = variation.strip().split(',')
# obtenemos sólo el apellido
surname = a[0]
# removemos espacios vacíos
names = a[1].strip()
# separamos en espacios para obtener primer y segundo nombre
names_list = names.split(' ')
first_name = names_list[0]
second_name = names_list[1] if len(names_list) > 1 else None
if search_type == 'main':
if params.main_search['use_raw']:
# agregamos como parámetro de búsqueda el string tal cual fue ingresado en la lista
search.append(f'{surname} {names}')
if params.main_search['use_fullname'] == True:
create_accent_variation(surname, names)
if params.main_search['use_first_name_initial_second_name'] and second_name is not None:
nn = f'{first_name} {second_name[0]}'
create_accent_variation(surname, nn)
if params.main_search['use_first_name_only'] and second_name is not None:
# Sólo buscamos por apellido y primer nombre
create_accent_variation(surname, first_name)
else:
if params.secondary_search['use_second_name_only'] == True and second_name is not None:
# Sólo buscamos por apellido y segundo nombre
create_accent_variation(surname, second_name)
if params.secondary_search['use_initials_name_only'] == True:
# Sólo buscamos por apellido e iniciales
if second_name is not None:
nn = f'{first_name[0]} {second_name[0]}'
create_accent_variation(surname, nn)
create_accent_variation(surname, second_name[0])
create_accent_variation(surname, first_name[0])
surname_list = surname.split(' ')
if len(surname_list) > 1:
if params.secondary_search['use_first_surname_only'] == True:
if params.secondary_search['use_fullname'] == True:
create_accent_variation(surname_list[0], names)
if params.secondary_search['use_first_name_initial_second_name'] == True and second_name is not None:
nn = f'{first_name} {second_name[0]}'
create_accent_variation(surname_list[0], nn)
if params.secondary_search['use_first_name_only'] == True and second_name is not None:
# Sólo buscamos por apellido y primer nombre
create_accent_variation(surname_list[0], first_name)
if params.secondary_search['use_second_surname_only'] == True:
# Usamos la segunda palabra del apellido siempre y cuando no sea "de"
second_surname = surname_list[1] if surname_list[1].lower(
) != 'de' else surname_list[2]
if params.secondary_search['use_fullname'] == True:
create_accent_variation(second_surname, names)
if params.secondary_search['use_first_name_initial_second_name'] == True and second_name is not None:
nn = f' {first_name} {second_name[0]}'
create_accent_variation(second_surname, nn)
if params.secondary_search['use_first_name_only'] == True and second_name is not None:
# Sólo buscamos por apellido y primer nombre
create_accent_variation(second_surname, first_name)
params_obj = {
FILTER: 'display_name.search:' + '|'.join(search),
MAILTO: params.email,
PAGE: page,
PER_PAGE: PER_PAGE_AUTHORS_VALUE
}
if page == 1:
log(f'> Parámetros de búsqueda: {params_obj[FILTER]}')
url = API_URL + '/authors'
r = requests.get(
url=url,
params=params_obj
)
COUNT += 1
try:
data = r.json()
except Exception:
raise ValueError('La API devolvió una respuesta inválida')
# Limitamos el pedido para no descargar cientos y cientos de páginas
# la api los devuelve en orden de relevancia (tentativo) y en las primeras páginas
# ya debeían estar los matcheos que buscamos
if page <= LIMIT_AUTHORS_PAGES:
log(f'-> Buscando autor {author}, página {page}...')
# si los resultados superan lo 10000, ya no se puede acceder mediante paginado
# y no existe el campo meta
if 'meta' in data:
if data['meta']['count'] > PER_PAGE_WORKS_VALUE * page:
new_page = get_author(author, search_type, page + 1)
if 'results' in new_page:
data['results'] = [*data['results'], *new_page['results']]
return data
def get_works(author_id, page=1):
global COUNT
search_filter = f'author.id:{author_id}'
type = params.type
if type is not None:
type = '|'.join(type) if isinstance(type, list) else type
search_filter += f',type:{type}'
params_obj = {
# sólo un autor por petición y del tipo especificado en params.py
FILTER: search_filter,
MAILTO: params.email,
PAGE: page,
PER_PAGE: PER_PAGE_WORKS_VALUE,
}
url = API_URL + '/works'
r = requests.get(
url=url,
params=params_obj
)
COUNT += 1
try:
data = r.json()
except Exception:
raise ValueError('La API devolvió una respuesta inválida')
log(f'---> Buscando trabajos del autor {author_id}, página {page}...')
if data['meta']['count'] > PER_PAGE_WORKS_VALUE * page:
new_page = get_works(author_id, page + 1)
data['results'] = [*data['results'], *new_page['results']]
return data