add zhaoan

This commit is contained in:
SiHuan 2020-09-13 18:12:38 +08:00
parent 232ebd2876
commit 8c7f140f99
3 changed files with 91 additions and 1 deletions

1
.gitignore vendored
View file

@ -6,3 +6,4 @@ config.py
test.py test.py
push.cmd push.cmd
data/pcr/char.list data/pcr/char.list
venv

21
req.txt
View file

@ -1,31 +1,52 @@
astroid==2.3.3 astroid==2.3.3
autopep8==1.5 autopep8==1.5
backcall==0.2.0
certifi==2019.11.28 certifi==2019.11.28
chardet==3.0.4 chardet==3.0.4
Click==7.0 Click==7.0
decorator==4.4.2
entrypoints==0.3 entrypoints==0.3
flake8==3.7.9 flake8==3.7.9
Flask==1.1.1 Flask==1.1.1
idna==2.9 idna==2.9
importlib-metadata==1.5.0 importlib-metadata==1.5.0
inflect==4.1.0 inflect==4.1.0
ipykernel==5.3.4
ipython==7.18.1
ipython-genutils==0.2.0
isort==4.3.21 isort==4.3.21
itsdangerous==1.1.0 itsdangerous==1.1.0
jaraco.itertools==5.0.0 jaraco.itertools==5.0.0
jedi==0.17.2
Jinja2==2.11.1 Jinja2==2.11.1
jupyter-client==6.1.7
jupyter-core==4.6.3
lazy-object-proxy==1.4.3 lazy-object-proxy==1.4.3
MarkupSafe==1.1.1 MarkupSafe==1.1.1
mccabe==0.6.1 mccabe==0.6.1
more-itertools==8.2.0 more-itertools==8.2.0
parso==0.7.1
pexpect==4.8.0
pickleshare==0.7.5
prompt-toolkit==3.0.7
ptyprocess==0.6.0
pycodestyle==2.5.0 pycodestyle==2.5.0
pydub==0.24.1 pydub==0.24.1
pyflakes==2.1.1 pyflakes==2.1.1
Pygments==2.7.0
pylint==2.4.4 pylint==2.4.4
python-dateutil==2.8.1
pyzmq==19.0.2
redis==3.4.1 redis==3.4.1
requests==2.23.0 requests==2.23.0
six==1.14.0 six==1.14.0
sxtwl==1.1.0
toml==0.10.1
tornado==6.0.4
traitlets==5.0.4
typed-ast==1.4.1 typed-ast==1.4.1
urllib3==1.25.8 urllib3==1.25.8
wcwidth==0.2.5
Werkzeug==1.0.0 Werkzeug==1.0.0
wolframalpha==4.0.0 wolframalpha==4.0.0
wrapt==1.11.2 wrapt==1.11.2

68
worker/zhaoan.py Normal file
View file

@ -0,0 +1,68 @@
from zzcore import StdAns
import requests
import sxtwl
from datetime import datetime
from config import HFWEATHERKEY
class Ans(StdAns):
def GETMSG(self):
msg = f'早上好,今天是{calendar()}\n\n'
msg += getWeather() + '\n\n'
t = requests.get('https://v1.hitokoto.cn/?c=k&encode=text').text
msg += t
return msg
def getWeather(id='101120206'):
def wemoji(text):
if '' in text:
return text + '🌨'
if '' in text:
return text + '🌧️'
if '' in text:
return text + ''
if '' in text:
return text + '🌤'
if '' in text:
return text + '☀️'
return text
url = 'https://devapi.heweather.net/v7/weather/3d'
params = {
'location': id,
'key': HFWEATHERKEY,
}
r = requests.get(url=url, params=params).json()
tdw = r['daily'][0]
ndw = r['daily'][1]
weather = f"今日日间{wemoji(tdw['textDay'])},温度{tdw['tempMin']}{tdw['tempMax']}℃,{tdw['windDirDay']}{tdw['windScaleDay']}级;夜间{wemoji(tdw['textNight'])}{tdw['windDirNight']}{tdw['windScaleNight']}级。明日日间{wemoji(ndw['textDay'])},温度{ndw['tempMin']}{ndw['tempMax']}℃。"
if float(tdw['precip']) > 0:
weather += '\n记得收好衣服,出门带伞~'
return weather
def calendar():
ymc = ["十一", "十二", "", "", "", "", "", "", "", "", "", ""]
rmc = ["初一", "初二", "初三", "初四", "初五", "初六", "初七", "初八", "初九", "初十", "十一", "十二", "十三", "十四", "十五",
"十六", "十七", "十八", "十九", "二十", "廿一", "廿二", "廿三", "廿四", "廿五", "廿六", "廿七", "廿八", "廿九", "三十", "卅一"]
zmc = ["", "", "", "", "", "", ""]
nowdate = datetime.now()
y = nowdate.year
m = nowdate.month
d = nowdate.day
zc = int(nowdate.strftime("%W")) - 34
z = zmc[nowdate.weekday()]
lunar = sxtwl.Lunar()
lunarday = lunar.getDayBySolar(y, m, d)
lunardaychinese = f"{ymc[lunarday.Lmc]}{rmc[lunarday.Ldi]}"
if lunarday.Lleap:
lunardaychinese = "" + lunardaychinese
cal = f"{y}{d}日,农历{lunardaychinese},本学期第{zc}周,星期{z}"
return cal