例如我送文件 with open('test_zip'), 'wb') as f:
f.write(content)
res = requests.post(URL, data={'file': content})
然後我試圖讓服務器端的文件 async def handle(request):
form = await request.post()
data
我想ayncio和使用coroutine不與線程相關的,因爲coroutine是一種「線」下程序的調度運行的,所以應該只有1個線程運行每個過程。但是,當我在Making 1 million requests with python-aiohttp跑的例子,代碼如下圖所示: # modified fetch function with semaphore
import random
import