python | 在新线程中使用异步asyncio
2022/7/28 1:53:05
本文主要是介绍python | 在新线程中使用异步asyncio,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
python | 在新线程中使用异步asyncio
主要参考文章:https://blog.csdn.net/qq_27825451/article/details/102457256
实例代码是我开发的弹幕姬图形化界面,使用tkinter和asyncio:
import pybilidanmu import tkinter import asyncio import threading import time # 连接弹幕服务器 def connect(): client = pybilidanmu.Pybilidanmu(25440862) coroutine1 = client.enter_room() coroutine2 = client.heartbeat() coroutine3 = fetch_dm(client) # 获取弹幕并显示的coroutine new_loop = asyncio.new_event_loop() #在当前线程下创建时间循环,(未启用),在start_loop里面启动它 t = threading.Thread(target=start_loop,args=(new_loop,)) #通过当前线程开启新的线程去启动事件循环 t.start() asyncio.run_coroutine_threadsafe(coroutine1,new_loop) asyncio.run_coroutine_threadsafe(coroutine2,new_loop) asyncio.run_coroutine_threadsafe(coroutine3,new_loop) async def fetch_dm(client): text.insert('end', f'已连接上弹幕服务器, 当前房间号: {client.roomid}\r\n') while True: if len(client.dm_list) > 0: tmp = client.dm_list.pop(0) if len(tmp) > 20: # 精简消息显示 tmp = tmp[:30]+b'...' text.insert('end', f'消息: {tmp}\r\n') text.see('end') else: await asyncio.sleep(0.5) root_window =tkinter.Tk() root_window.title('Mz1弹幕姬') root_window.geometry('500x300') button=tkinter.Button(root_window,text="关闭",command=root_window.quit) button.pack(side="bottom") button0=tkinter.Button(root_window,text="连接",command=connect) button0.pack(side="bottom") # width 一行可见的字符数;height 显示的行数 text = tkinter.Text(root_window, width=60, height=25) # 适用 pack(fill=X) 可以设置文本域的填充模式。比如 X表示沿水平方向填充,Y表示沿垂直方向填充,BOTH表示沿水平、垂直方向填充 text.pack() #定义一个专门创建事件循环loop的函数,在另一个线程中启动它 def start_loop(loop): asyncio.set_event_loop(loop) loop.run_forever() def main(): text.insert('end', '正在启动...\r\n启动完毕\r\n') root_window.mainloop() if __name__ == '__main__': main()
这篇关于python | 在新线程中使用异步asyncio的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南