1 Star 2 Fork 2

crossin/TinyCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
weather_voice.py 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
crossin 提交于 2021-02-22 13:02 . 查天气语音播报版
import requests
import pyttsx3
from lxml import etree
url = 'https://www.tianqi.com/beijing/'
headers = {'content-type':'application/json', 'User-Agent':'Mozilla/5.0 (Xll; Ubuntu; Linux x86_64; rv:22.0) Gecko/20100101 Firefox/22.0'}
# 向目标url地址发送请求,返回一个response对象
req = requests.get(url=url, headers=headers)
# .text是response对象的网页html
html = req.text
html_obj = etree.HTML(html)
html_data = html_obj.xpath("//dl[@class='weather_info']//text()")
word = "欢迎使用天气播报助手"
for data in html_data:
word += data
word = word.replace('[切换城市]','')
word += '\n播报完毕!谢谢!'
print(word)
ptt = pyttsx3.init()
ptt.say(word)
ptt.runAndWait()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/crossin/tiny-code.git
git@gitee.com:crossin/tiny-code.git
crossin
tiny-code
TinyCode
master

搜索帮助