Задать вопрос
Ответы пользователя по тегу Python
  • Как нажать на первый элемент из предложеных городов через selenium?

    мб, так:
    list_city = driver.get(...)
    print(list_city[1])
    ?
    Ответ написан
    Комментировать
  • Почему не работает асинхронный код python под прокси?

    Посмотрите этот код, может, поможет:
    import asyncio
    import os
    import time
    import random
    from time import perf_counter
    import aiohttp
    import aiofiles

    SITE = 'https://thispersondoesnotexist.com/'
    IMAGE_COUNT = 50
    PROXY = ''

    def generate_filename(file_extension):
    temp = str(int(time.time()))
    for _ in range(5):
    temp += chr(random.randint(65, 75))
    return f'{temp}.{file_extension}'

    async def download_image(image_num):
    async with aiohttp.ClientSession() as session:
    async with session.get(SITE, proxy=f'http://{PROXY}') as response:
    extension = response.headers['content-type'].split('/')[-1]
    filename = os.path.join('Images_async', generate_filename(extension))

    async with aiofiles.open(filename, mode='wb') as file:
    async for chunk in response.content.iter_chunked(64 * 1024):
    await file.write(chunk)
    print(f'image {image_num + 1} finished...')

    async def main():
    image_tasks = []
    for image_num in range(IMAGE_COUNT):
    image_tasks.append(asyncio.create_task(download_image(image_num)))
    await asyncio.gather(*image_tasks)

    if __name__ == '__main__':
    start = perf_counter()
    asyncio.run(main())
    print(f'time: {(perf_counter() - start):.02f}')

    Я этот код увидел в процессе обучения. Он работает.
    Ответ написан
    Комментировать