-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspider.py
executable file
·35 lines (29 loc) · 986 Bytes
/
spider.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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import hashlib
from vndb import DBHelper
db_conf = {
'user': 'vien',
'passwd': 'vien',
'host': '127.0.0.1',
'schema': 'vien',
'charset': 'utf8mb4',
}
class Spider(object):
def parse(self, response):
resp = response.get_response()
if resp:
url = response.get_item()
cur_url = url['img_standard_url']
file_name = self.md5(cur_url) + cur_url[cur_url.rfind('.'):]
path = "/Users/vien/img/"
with open(path + file_name, 'wb') as f:
f.write(resp.content)
with DBHelper(**db_conf) as db:
row_count = db.execute(" UPDATE ins_meme_tag_data SET img_file_name = %s WHERE id = %s ",
(file_name, url['id']))
print(row_count, file_name, url['id'])
def md5(self, s):
m = hashlib.md5()
m.update(str(s))
return m.hexdigest()