资源简介


资源截图

代码片段和文件信息

# 下载源码就运行,你需要改动几个地方
 
from __future__ import unicode_literals
from threading import Timer
from wxpy import *
import requests
 
 
bot = Bot()
 
# linux执行登陆请调用下面的这句
#bot = Bot(console_qr=2cache_path=“botoo.pkl“)
 
 
def get_news():
     
    “““获取金山词霸每日一句,英文和翻译“““
     
    url = “http://open.iciba.com/dsapi/“
    r = requests.get(url)
    content = r.json()[‘content‘]
    note = r.json()[‘note‘]
    return content note
 
 
def send_news():
    try:
        contentnote 

评论

共有 条评论