Здравствуйте, я новичок в асинхронном программирование. Объясните, пожалуйста, что делает Semaphore?
async def fetch(url, session):
async with session.get(url) as response:
return await responce.text()
async def bound_fetch(sem, url, session):
async with asyncio.Semaphore(1000):
await fetch(url, session)
async def run(r):
tasks = []
async with ClientSession() as session:
for i in range(10000):
task = asyncio.ensure_future(bound_fetch(sem, url.format(i), session))
tasks.append(task)
return await asyncio.gather(*tasks)
loop = asyncio.get_event_loop()
future = asyncio.ensure_future(run(number))
loop.run_until_complete(future)