
爬虫案例
ALazyPerson
这个作者很懒,什么都没留下…
展开
-
正则表达式获取诗词内容
#!/usr/bin/env python# -*- coding: utf-8 -*-import requests, re # 引入网络请求模块与表达式模块# 解析网页def parse_page(url): # 请求头 headers = { 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS ...原创 2019-08-30 21:32:19 · 755 阅读 · 0 评论 -
获取天气网城市最低气温并数据可视化
准备: Pycharm终端命令行或windows/Mac终端 1. requests(pip install requests) 2.BeautifulSoup(pipinstall beautifulsoup) 3.pyecharts(pipinstall pyecharts)案例如下:import ...原创 2019-08-13 14:57:36 · 811 阅读 · 0 评论