다른 명령
데브카페에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2025년 8월 13일 (수) 16:53 Devcafe 토론 기여님이 대신증권 PER EPS 조회 문서를 만들었습니다 (새 문서: <source lang=python> import win32com.client # Create Object instMarketEye = win32com.client.Dispatch("CpSysDib.MarketEye") # SetInputValue instMarketEye.SetInputValue(0, (4, 67, 70, 111)) instMarketEye.SetInputValue(1, 'A003540') # BlockRequest instMarketEye.BlockRequest() # GetData print("현재가: ", instMarketEye.GetDataValue(0, 0)) print("PER: ", instMarketEye.GetDataValue(1, 0)) print("EPS: ", instMarketEye.GetDataValue(2, 0)) print("최근분기년월: ", instMarketEy...)