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