Data Science/Python
[python] Accelerate Requests Using asyncio
import aiohttp import asyncio import os from aiohttp import ClientSession GOOGLE_BOOKS_URL = "https://www.googleapis.com/books/v1/volumes?q=isbn:" LIST_ISBN = [ '9780002005883', '9780002238304', '9780002261982', '9780006163831', '9780006178736', '9780006280897', '9780006280934', '9780006353287', '9780006380832', '9780006470229', ] def extract_fields_from_response(response): """Extract fields fro..
2022. 9. 1. 01:36
최근댓글