122 lines
3.8 KiB
Python
122 lines
3.8 KiB
Python
# [국내주식] 종목정보 - 상품기본조회
|
|
# Generated by KIS API Generator (Single API Mode)
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on 2025-06-17
|
|
|
|
"""
|
|
|
|
import logging
|
|
import sys
|
|
import time
|
|
from typing import Optional
|
|
|
|
import pandas as pd
|
|
|
|
sys.path.extend(['../..', '.'])
|
|
import kis_auth as ka
|
|
|
|
# 로깅 설정
|
|
logging.basicConfig(level=logging.INFO, format='%(levelname)s - %(message)s')
|
|
logger = logging.getLogger(__name__)
|
|
|
|
##############################################################################################
|
|
# [국내주식] 종목정보 > 상품기본조회[v1_국내주식-029]
|
|
##############################################################################################
|
|
|
|
# 상수 정의
|
|
API_URL = "/uapi/domestic-stock/v1/quotations/search-info"
|
|
|
|
def search_info(
|
|
pdno: str, # 상품번호
|
|
prdt_type_cd: str, # 상품유형코드
|
|
tr_cont: str = "", # 연속 거래 여부
|
|
dataframe: Optional[pd.DataFrame] = None, # 누적 데이터프레임
|
|
depth: int = 0, # 현재 재귀 깊이
|
|
max_depth: int = 10 # 최대 재귀 깊이
|
|
) -> Optional[pd.DataFrame]:
|
|
"""
|
|
[국내주식] 종목정보
|
|
상품기본조회[v1_국내주식-029]
|
|
상품기본조회 API를 호출하여 DataFrame으로 반환합니다.
|
|
|
|
Args:
|
|
pdno (str): 상품번호 (예: '000660', 'KR4101SC0009', 'AAPL')
|
|
prdt_type_cd (str): 상품유형코드 (예: '300', '301', '512')
|
|
tr_cont (str): 연속 거래 여부 (기본값: 공백)
|
|
dataframe (Optional[pd.DataFrame]): 누적 데이터프레임
|
|
depth (int): 현재 재귀 깊이
|
|
max_depth (int): 최대 재귀 깊이 (기본값: 10)
|
|
|
|
Returns:
|
|
Optional[pd.DataFrame]: 상품기본조회 데이터
|
|
|
|
Example:
|
|
>>> df = search_info('AAPL', '512')
|
|
>>> print(df)
|
|
"""
|
|
# 로깅 설정
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# 필수 파라미터 검증
|
|
if not pdno:
|
|
logger.error("pdno is required. (e.g. '000660')")
|
|
raise ValueError("pdno is required. (e.g. '000660')")
|
|
|
|
if not prdt_type_cd:
|
|
logger.error("prdt_type_cd is required. (e.g. '300')")
|
|
raise ValueError("prdt_type_cd is required. (e.g. '300')")
|
|
|
|
# 최대 재귀 깊이 체크
|
|
if depth >= max_depth:
|
|
logger.warning("Maximum recursion depth (%d) reached. Stopping further requests.", max_depth)
|
|
return dataframe if dataframe is not None else pd.DataFrame()
|
|
|
|
# API 호출 URL 및 거래 ID 설정
|
|
|
|
tr_id = "CTPF1604R"
|
|
|
|
# 요청 파라미터 설정
|
|
params = {
|
|
"PDNO": pdno,
|
|
"PRDT_TYPE_CD": prdt_type_cd,
|
|
}
|
|
|
|
# API 호출
|
|
res = ka._url_fetch(API_URL, tr_id, tr_cont, params)
|
|
|
|
# API 응답 처리
|
|
if res.isOK():
|
|
if hasattr(res.getBody(), 'output'):
|
|
output_data = res.getBody().output
|
|
if not isinstance(output_data, list):
|
|
output_data = [output_data]
|
|
current_data = pd.DataFrame(output_data)
|
|
else:
|
|
current_data = pd.DataFrame()
|
|
|
|
# 데이터프레임 병합
|
|
if dataframe is not None:
|
|
dataframe = pd.concat([dataframe, current_data], ignore_index=True)
|
|
else:
|
|
dataframe = current_data
|
|
|
|
# 연속 거래 여부 확인
|
|
tr_cont = res.getHeader().tr_cont
|
|
|
|
if tr_cont == "M":
|
|
logger.info("Calling next page...")
|
|
ka.smart_sleep()
|
|
return search_info(
|
|
pdno,
|
|
prdt_type_cd,
|
|
"N", dataframe, depth + 1, max_depth
|
|
)
|
|
else:
|
|
logger.info("Data fetch complete.")
|
|
return dataframe
|
|
else:
|
|
logger.error("API call failed: %s - %s", res.getErrorCode(), res.getErrorMessage())
|
|
res.printError(API_URL)
|
|
return pd.DataFrame()
|