摘要: python | websockets库的使用 最近又想玩玩b站的弹幕,就看了一下websockets库 pip install websockets 这个库是基于asyncio的,所以得用python3.7以上,然后用异步的方式去写,大概写了点demo: 有时间完善一下好了,这个方便的地方就是可以 阅读全文
posted @ 2022-07-12 23:56 Mz1 阅读(4170) 评论(0) 推荐(0) 编辑
摘要: python | asyncio协程写法 贴个代码方便以后用: if __name__ == '__main__': server = NoChatServer() tasks = [ server.run(), server.xxx(), ] loop = asyncio.get_event_lo 阅读全文
posted @ 2022-07-12 23:10 Mz1 阅读(44) 评论(0) 推荐(0) 编辑