-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscraper.py
140 lines (114 loc) · 4.13 KB
/
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
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
from bs4 import BeautifulSoup
import csv
import html5lib
from urllib.request import urlopen
import schedule
import time
import datetime
import redis
import os
import requests
class articulo:
titulo=''
link=''
contenido=''
fecha=''
imagen=''
USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36"
def scrapeSemana():
listaArticulos=[]
log("solicitando principal")
page = request("http://semana.com")
soup = BeautifulSoup( page , 'html5lib')
for unArticulo in soup.find_all('h2',class_="article-h"):
nuevoArticulo=articulo()
nuevoArticulo.titulo=unArticulo.a.string
nuevoArticulo.link=unArticulo.a['href']
nuevoArticulo.contenido=""
is_relative_article_link = nuevoArticulo.link.startswith('/')
if is_relative_article_link:
nuevoArticulo.link = "http://www.semana.com" + nuevoArticulo.link
noodles = BeautifulSoup(request(nuevoArticulo.link),'html5lib')
nuevoArticulo.contenido = (noodles.find('div',class_="item-text"))
if nuevoArticulo.contenido != None:
nuevoArticulo.fecha = noodles.find('h3', class_="header-date")
# nuevoArticulo.imagen = noodles.find('a', class_="article-image").get("href")
# log(nuevoArticulo.imagen)
listaArticulos.append(nuevoArticulo)
elcsv = serialize_articles(listaArticulos)
store(elcsv, "semana")
log("termine")
print(datetime.datetime.now())
def scrapeElTiempo():
listaArticulos = []
log("solicitando principal")
page = request("http://eltiempo.com")
soup = BeautifulSoup( page , 'html5lib')
for unArticulo in soup.find_all('a',class_="title page-link"):
nuevoArticulo = articulo()
nuevoArticulo.titulo = unArticulo.string
nuevoArticulo.link = unArticulo['href'].replace(" ", "")
nuevoArticulo.contenido = ""
is_relative_article_link = nuevoArticulo.link.startswith('/')
if is_relative_article_link:
nuevoArticulo.link = "http://www.eltiempo.com" + nuevoArticulo.link
newPage = ""
while newPage == "" :
try:
newPage = request(nuevoArticulo.link)
except:
time.sleep(5)
continue
noodles = BeautifulSoup( newPage , 'html5lib')
nuevoArticulo.contenido = (noodles.find('div',class_="articulo-contenido"))
if nuevoArticulo.contenido != None:
nuevoArticulo.fecha = noodles.find('span', class_="fecha").string
# nuevoArticulo.imagen = noodles.find('link', rel="image_src").get("href")
# log(nuevoArticulo.imagen)
listaArticulos.append(nuevoArticulo)
elcsv = serialize_articles(listaArticulos)
store(elcsv, "tiempo")
log("termine")
print(datetime.datetime.now())
def request(url):
log("requesting " + url)
custom_headers = {
'user-agent' : USER_AGENT ,
'accept': "text/html;charset=UTF-8"
}
response = requests.get(url , headers = custom_headers)
response.encoding="utf-8"
return response.text
def log(algo):
prefix = '[' + timestamp() + '] '
print( prefix + algo)
def timestamp():
return datetime.datetime.now().strftime("%m/%d/%y %H:%M:%S")
def serialize_articles(lista):
articulos = map(serialize_article, lista)
finalCsv = "titulo,link,contenido,fecha,imagen\n" + '\n'.join(articulos)
return finalCsv
def serialize_article(article):
line_elements = [
article.titulo,
article.link,
article.contenido,
article.fecha,
article.imagen
]
clean_line_elements = map(applyFormatEscaping , line_elements )
final_line = ','.join(clean_line_elements)
return final_line
def applyFormatEscaping(data):
return '"' + str(data).replace('"', "'") + '"'
def store(content, destination):
r = redis.from_url(os.environ.get('REDIS_URL'))
r.set( destination , content.encode('utf8'))
def scrape():
scrapeSemana()
scrapeElTiempo()
scrape()
schedule.every(5).minutes.do(scrape)
while True:
schedule.run_pending()
time.sleep(1)