목록2025/01/08 (3)
rubus0304 님의 블로그
1. 네이버 지도 웹크롤링2. 반려동물 동반여행 API 오류 수정 1. 네이버 지도 웹크롤링from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.support import expected_conditions as ECfrom selenium.webdriver.common.action_chains import ActionChainsimport jsonimport timefrom time import sle..
# 이미지 정보 조회url = f"{BASE_URL}/detailImage"params = { "serviceKey": AUTH_KEY, "numOfRows": 1000, "pageNo": 1, "MobileOS": "ETC", "MobileApp": "TestApp", "_type": "json", "contentId": 2627867}response = requests.get(url, params=params)if response.status_code == 200: data = response.json() print(data) if 'items' in data.get('response', {}).get('body', {}): item..