资源简介
这是python版的天气预报。
使用须知:
使用前请pip安装requests和BeautifulSoup库!
原理:
利用爬虫获取天气信息
解码
gui显示
默认为北京的天气,可在代码第七行改!
#可以看看我的其他资源鸭!
代码片段和文件信息
import requests
from bs4 import BeautifulSoup
from tkinter import *
import datetime
requests.session()
r = requests.get(‘http://wthrcdn.etouch.cn/WeatherApi?city=北京‘)
soup = BeautifulSoup(r.text‘lxml‘)
a = soup.find_all(‘city‘)
city = a[0].get_text()
print(a[0].get_text())
a = soup.find_all(‘wendu‘)
wendu = a[0].get_text()
print(‘温度为:‘a[0].get_text())
a = soup.find_all(‘shidu‘)
shidu = a[0].get_text()
print(‘湿度为:‘a[0].get_text())
a = soup.find_all(‘fengli‘)
fengli = a[0].get_text()
print(‘风力:‘a[0].get_text())
a = soup.find_all(‘fengxiang‘)
fengxiang = a[0].get_text()
print(‘风向:‘a[0].get_text())
a = soup.find_all(‘quality‘)
quality = a[0].get_text()
print(‘空气质量:‘a[0].get_text())
a = soup.find_all(‘pm25‘)
pm25 = a[0].get_text()
print(‘PM2.5:‘a[0].get_text())
date_time = datetime.datetime.now().strftime(‘%Y_%m_%d‘)
filename = date_time +‘.txt‘
with open(filename‘w‘encoding=‘utf8‘) as f:
f.write(‘城市:‘+city +‘\n‘)
f.write(‘温度:‘+wendu +‘\n‘)
f.write(‘湿度:‘+str(shidu) +‘\n‘)
f.write(‘风力:‘+ fengli +‘\n‘
相关资源
- 二级考试python试题12套(包括选择题和
- pywin32_python3.6_64位
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
- 一个简单的python爬虫
- csv文件行列转换python实现代码
- Python操作Mysql教程手册
- Python Machine Learning Case Studies
- python获取硬件信息
评论
共有 条评论