摘要: # 链家新房爬虫 **今日目标** 爬取最新地区以及对应的房价 ```python import requests import re import csv class LianjiaSpider(object): def __init__(self): self.url='https://cq.lianjia.com/ershoufang/pg{}/' ... 阅读全文
posted @ 2019-07-23 22:18 Dragon、 阅读(287) 评论(0) 推荐(0) 编辑
摘要: import requests class DoubanSpider(object): def __init__(self): self.url='https://movie.douban.com/j/chart/top_list?' self.headers = { "Accept": '*/*', "A... 阅读全文
posted @ 2019-07-23 22:13 Dragon、 阅读(760) 评论(0) 推荐(0) 编辑