从零学习的歪经小 发表于 2021-4-28 12:25

快来捡“女朋友”(使用python写个假女友)

本帖最后由 从零学习的歪经小 于 2021-4-29 12:21 编辑

看了 医生 发表的 女朋友要我每天给她报天气,这不耽误我打游戏嘛也来搞个玩玩

# -*- coding: utf-8 -*-
import requests

def post_data(data):
    qmsg_url = 'https://qmsg.zendee.cn/send/key'   #填你的key
    res = requests.post(qmsg_url, data=data).json()
    print(res['reason'])


def morning():
    url = 'http://api.tianapi.com/txapi/zaoan/index?key=???'#从这自己申请https://www.tianapi.com/apiview/143
    res = requests.get(url).json()
    content = res['newslist']['content']

    data = {
      'msg': "早上好呀,老公大人@face=2@@face=49@@face=109@\n%s@face=175@" % content
    }
    post_data(data)


def weather(code):
    url = 'http://t.weather.itboy.net/api/weather/city/%d' % code
    res = requests.get(url, headers=headers).json()

    city = res['cityInfo']['city']# 地区
    forecast = res['data']['forecast']# 具体天气
    quality = res['data']['quality']
    pm25 = res['data']['pm25']
    pm10 = res['data']['pm10']
    ganmao = res['data']['ganmao']# ganmao: "各类人群可自由活动"
    shidu = res['data']['shidu']
    wendu = res['data']['wendu'] + '℃'
    for lmaki_data, lmaki in zip(forecast, ['今天', '明天']):
      ymd = lmaki_data['ymd']# 时间
      week = lmaki_data['week']# 星期几
      sunrise = lmaki_data['sunrise']# 日出
      sunset = lmaki_data['sunset']# 日落
      high = lmaki_data['high']# 最高温
      low = lmaki_data['low']# 最低温
      fx = lmaki_data['fx']# 风向
      fl = lmaki_data['fl']# 几级风
      type_we = lmaki_data['type']# 天气
      notice = lmaki_data['notice']# 提示语

      total = f'@face=6@{lmaki}是{week},天气是 {type_we} 哦,温度为{wendu},湿度为{shidu}\npm2.5的值为{pm25},pm1.0的值是{pm10},{ganmao}\n{high},{low},{notice},吹的是{fx},风速达到了{fl}了。\n太阳将在 {sunrise} 升起,{sunset} 落下\n天气质量为 {quality}@face=13@   {ymd}   {city}'
      data = {
            'msg': total
      }
      post_data(data)


def main():
    morning()
    weather(101210805)    #城市代码


if __name__ == '__main__':
    headers = {
      'User - Agent': 'Mozilla / 5.0(Windows NT 10.0;WOW64) AppleWebKit / 537.36(KHTML, likeGecko) Chrome / 86.0.4240.198Safari / 537.36'
    }
    main()



{:301_997:}
实际是来水的

https://static.52pojie.cn/static/image/hrline/1.gif

这个是那个早安的api申请地址,每天100次,别把我的用完了。https://www.tianapi.com/apiview/143
没想到这么快,100次直接用超了200多次。。。。。你们自己申请一个吧。

wuoo563 发表于 2021-4-28 12:46

{:1_937:}哪里能领女朋友

1677 发表于 2021-4-28 12:54

执行摘要测试失败
请求ID       
26f8e823-bb61-447f-a9f5-7fb882732947
运行时间       
0ms
计费时间       
0ms
运行内存       
0MB
返回结果

{"errorCode":-1,"errorMessage":"Traceback (most recent call last):\nFile \"/var/runtime/python3/bootstrap.py\", line 133, in init_handler\n    func_handler = get_func_handler(file.rsplit(\".\", 1), func)\nFile \"/var/runtime/python3/bootstrap.py\", line 160, in get_func_handler\n    return getattr(mod, fname)\nAttributeError: module 'index' has no attribute 'main_handler'","requestId":"26f8e823-bb61-447f-a9f5-7fb882732947","statusCode":443} 大佬这是个什么问题啊

天天-不破不立 发表于 2021-4-28 12:29

没有办法正常运行

从零学习的歪经小 发表于 2021-4-28 12:31

天天-不破不立 发表于 2021-4-28 12:29
没有办法正常运行

你要自己申请qmsg酱的key

天天-不破不立 发表于 2021-4-28 12:33

从零学习的歪经小 发表于 2021-4-28 12:31
你要自己申请qmsg酱的key

哦,我知道了,谢谢楼主的回答

不知道改成啥 发表于 2021-4-28 12:37

女朋友呢,你给发吗?

tbloy 发表于 2021-4-28 12:38

原来是来秀恩爱的,支持下。

RoyPenn 发表于 2021-4-28 12:39

我只想问,哪里能领女朋友

从零学习的歪经小 发表于 2021-4-28 12:45

tbloy 发表于 2021-4-28 12:38
原来是来秀恩爱的,支持下。

这是机器人。{:301_971:}

那片梧桐那场雨 发表于 2021-4-28 12:47

很有创意{:1_927:} 怎样把它用云函数运行呢{:1_904:}
页: [1] 2 3 4
查看完整版本: 快来捡“女朋友”(使用python写个假女友)