摘要: """ 抓取今日头条街拍美图 """ import os import time import requests from hashlib import md5 class SpiderToutiao(object): def __init__(self): # 指定下载目录 self.download_dir = os.path.join(os... 阅读全文
posted @ 2018-05-06 21:26 WangXiaoQiang 阅读(962) 评论(0) 推荐(0) 编辑
摘要: """ 抓取猫眼电影TOP100 """ import re import time import requests from bs4 import BeautifulSoup class SpiderMaoyan(object): def __init__(self): # 通过分析URL可以发现 阅读全文
posted @ 2018-05-06 15:02 WangXiaoQiang 阅读(480) 评论(0) 推荐(0) 编辑