```python import time import asyncio from threading import Thread import functools import os …
标签:asyncio
asyncio 使用举例,代码记录
```python #! /usr/bin/python3 # -*- coding:utf-8 -*- # file: aiohttp_sync.py # author: wangchen…
协程 asyncio 异步编程 (笔记)
## 1.协程 #### 协程不是计算机提供,程序员认为创造 协程(coroutine)也是被称为微线程,是一种用户态的上下文切换技术,简而言之,其实就是通过一个线程实现代码模块相互切换…
FastAPI 快速入门
*FastAPI framework, high performance, easy to learn, fast to code, ready for production* FastAPI…
服务器性能测试客户端,aiohttp实现
### 一个性能测试工具aiohttp实现 ```python #! /usr/bin/python3 # -*- coding:utf-8 -*- # file: test.py #…