1 Star 0 Fork 7

松露/mjrobot

forked from 贾一飞/mjrobot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiayifei 提交于 2023-05-23 22:57 . 仓库初始化
from handler.wechat_handler import WeixinMjRobot
from config import conf, load_config
from common.log import logger
import time
def run():
try:
load_config()
wx_mj_robot = WeixinMjRobot()
wx_mj_robot.start()
except Exception as e:
logger.error("App startup failed!")
logger.exception(e)
def timed_function():
while True:
print("This function runs independently from the main process.")
time.sleep(5) # The function will wait for 5 seconds between prints
if __name__ == '__main__':
run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/songlu-cube/mjrobot.git
git@gitee.com:songlu-cube/mjrobot.git
songlu-cube
mjrobot
mjrobot
master

搜索帮助