-
Notifications
You must be signed in to change notification settings - Fork 2
/
xml_scraper.py
51 lines (50 loc) · 1.96 KB
/
xml_scraper.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
from urllib.request import urlopen, urlretrieve
from bs4 import BeautifulSoup
import pandas as pd
import re
import os
import time
def rasparXML(itemFinal,pasta):
'''
Função para raspar todos os arquivos xml de todos os
artigos publicados em cada uma das revistas
'''
item = itemFinal.find_all('td')
# Acessa e itera em cada edição da revista
for issue in item:
try:
linkissue = issue.find('a')['href']
print('Acessando a edição: ' + linkissue +'\n')
req = urlopen(linkissue)
bs = BeautifulSoup(req.read(), 'lxml')
tabelaGeral = bs.find(class_='content')
linkArtigos = tabelaGeral.find_all('a',href=re.compile(r'script=sci_arttext'))
# Itera na lista de links de xml de cada edição
for artigo in linkArtigos:
link = artigo['href']
req = urlopen(link)
bs = BeautifulSoup(req.read(), 'lxml')
li = bs.find_all('li')
listaId = []
for i in li:
try:
idArtigo = i.find('a',href=re.compile(r'/pdf/[a-z]*/'))
idArtigo = idArtigo['href']
listaId.append(idArtigo)
except:
pass
idFinal = listaId[0].replace('/pdf/', '')
idFinal = idFinal.replace('.pdf','')
idFinal = idFinal.replace('/','_')
fullName = idFinal+'.xml'
for t in li:
try:
xmlLink = t.find('a',href=re.compile(r'/php/articleXML.php'))
xml = f'{xmlLink["href"]}.xml'
path = os.path.join(pasta, fullName)
if not os.path.exists(path):
urlretrieve(xml, path)
except:
pass
except:
pass