-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather_tts_hp.py
197 lines (155 loc) · 6.87 KB
/
weather_tts_hp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/home/arthur/miniconda3/bin/python3.8
#coding=utf-8
from offline_speech.SpeechSynthsis import SpeechSynthsis
import sys
from time import ctime, sleep
import re
import json
import time
import smtplib
import requests
from lxml import etree
from pprint import pprint
from email.header import Header
from email.mime.text import MIMEText
def get_agent():
import random
user_agent_list = [
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1"
"Mozilla/5.0 (X11; CrOS i686 2268.111.0) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6",
"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1090.0 Safari/536.6",
"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/19.77.34.5 Safari/537.1",
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.9 Safari/536.5",
"Mozilla/5.0 (Windows NT 6.0) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.36 Safari/536.5",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3",
"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3",
"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1062.0 Safari/536.3",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1062.0 Safari/536.3",
"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.1 Safari/536.3",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.1 Safari/536.3",
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.1 Safari/536.3",
"Mozilla/5.0 (Windows NT 6.2) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.0 Safari/536.3",
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.24 (KHTML, like Gecko) Chrome/19.0.1055.1 Safari/535.24",
"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/535.24 (KHTML, like Gecko) Chrome/19.0.1055.1 Safari/535.24"
]
return random.choice(user_agent_list)
def get_weather(city_id):
url1 = "http://d1.weather.com.cn/sk_2d/{}.html?_=1544842784069".format(city_id)
# 如果User-Agent被识别出来了,就再重新随机一个UA
while 1:
headers = {
"Referer": "http://www.weather.com.cn/weather1d/{}.shtml".format(city_id),
"User-Agent": get_agent()
}
res1 = requests.get(url1, headers=headers)
if not re.search('FlashVars', res1.text):
break
res1.encoding = "utf-8"
js = json.loads(res1.text.lstrip('var dataSK = '))
url2 = "http://www.weather.com.cn/weather1d/{}.shtml".format(city_id)
print(url2)
# 如果User-Agent被识别出来了,就再重新随机一个UA
while 1:
headers = {
"Referer": "http://www.weather.com.cn/weather1d/{}.shtml".format(city_id),
"User-Agent": get_agent()
}
res2 = requests.get(url2, headers=headers)
if not re.search('FlashVars', res2.text):
break
res2.encoding = "utf-8"
s = etree.HTML(res2.text)
info1 = s.xpath('//*[@class="li1 hot"]/p/text()')[0] # 紫外线指数
info2 = s.xpath('//*[@id="chuanyi"]/a/p/text()')[0] # 穿衣指数
# info3 = s.xpath('//*[@class="li4 hot"]/p/text()')[0] # 洗车指数
print(js)
weather_info = {
# "城市": js['cityname'],
"日期": js['date'],
"天气": js['weather'],
"温度": js['temp'] + '℃',
"风向": js['WD'],
"风力等级": js['WS'],
# "相对湿度": js['SD'],
"空气质量": js['aqi_pm25'],
# "紫外线指数": info1,
"穿衣指数": info2
# "洗车指数": info3
}
pprint(weather_info) # 更好的打印Json格式数据
return weather_info
# http://www.weather.com.cn/weather1d/101010700.shtml
def main():
synthsis = SpeechSynthsis(16000)
##### reset test
synthsis.append("音频重置重要,123.78.88,上山打老虎老虎打不到打到小松鼠松鼠有几只,一二三四五,五只小松鼠")
i = 0
while True:
i = i + 1
if i == 11:
synthsis.reset()
print ("reset")
synthsis.append("音频重置,这是新的音频")
sleep(1)
if synthsis.playing():
print ('playing...')
if i == 15:
print ("add")
synthsis.append("这是新加的音频")
if i > 20 and synthsis.dataEmpty():
break
pass
#### performance test
# synthsis.append("这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, ")
# i = 0
# while True:
# if i < 100:
# i += 1
# synthsis.append("这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试,")
# sleep(1)
synthsis.close()
print ('finished')
return
def tts(message):
synthsis = SpeechSynthsis(10000)
##### reset test
synthsis.append(str(message))
# i = 0
# while True:
# i = i + 1
# if i == 11:
# synthsis.reset()
# print ("reset")
# synthsis.append("音频重置,这是新的音频")
# sleep(1)
# if synthsis.playing():
# print ('playing...')
# if i == 15:
# print ("add")
# synthsis.append("这是新加的音频")
# if i > 20 and synthsis.dataEmpty():
# break
# pass
#### performance test
# synthsis.append("这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, ")
# i = 0
# while True:
# if i < 100:
# i += 1
# synthsis.append("这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试, 这是性能测试,")
# sleep(1)
synthsis.close()
print ('finished')
return
if __name__ == '__main__':
weather_info = get_weather(101010700)
print(weather_info)
# tts(weather_info)
synthsis = SpeechSynthsis(18000)
##### reset test
synthsis.append(str(weather_info))
sleep(20)
synthsis.close()
print ('finished')