# -*- coding: utf-8 -*- import requests res = requests.get('http://localhost:7001/api/geoyoung/stock?keyword=라식스', timeout=30).json() print("=== 지오영 라식스 검색 ===") for item in res.get('items', []): internal = item.get('internal_code', '') spec = item.get('specification', '') name = item.get('product_name', '') print(f" 내부: {internal} | spec: {spec} | {name}")