initial veision

This commit is contained in:
2026-04-23 15:55:16 +09:00
parent 5688cfe2a2
commit a4dceccae1
2 changed files with 185 additions and 0 deletions
+87
View File
@@ -0,0 +1,87 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.1.0] - 2026-03-11
### Added
- Added `get_price(self, code)` method to `MarketDataProvider` interface and all broker implementations (`LS`, `Kis`, `Kiwoom`).
- Fetches the current day's OHLCV data and returns it as a single `finestock.Price` object.
## [1.0.0.1] - 2026-03-06
### Changed
- **Structural Refactoring**:
- Decoupled `APIFactory` to support lazy loading of broker implementations.
- Split `IAPI` into segregated interfaces: `MarketDataProvider`, `RealtimeProvider`, `AuthenticationProvider`.
- Deprecated `set_queue` in favor of `set_data_queue(queue)` which no longer requires a `threading.Condition`.
- Standardized naming conventions (PEP 8):
- Private methods now use single underscore `_` prefix.
- Renamed `do_order_cancle` to `do_order_cancel`.
## [0.5.3.1]
### Fixed
- remove unused log
---
## [0.5.3.0]
### Changed
- `exchgubun` parameter to `get_ohlcv(self, code, todate="", exchgubun="K", cts_date="", cts_time="", tr_cont_key="")` for specifying the exchange (default: `"K"` for KRX)
### Fixed
- LS API recv_order_status error
---
---
## [0.5.2.1] - 2025.11.05
### Fixed
- LS API response parsing error(do_oder return None)
---
## [0.5.2.0] - 2025.05.15
### Added
- Introduce `def get_index(self, code, frdate="", todate="", cts_date="", tr_cont_key=""):`
Fetches minute-level INDEX data with optional continuation tokens.
- Introduce `get_ohlcv_min(self, code, todate="", exchgubun="K", cts_date="", cts_time="", tr_cont_key="")`
Fetches minute-level OHLCV data with optional continuation tokens.
---
## [0.0.0.0]
### Added
- 최초 릴리스: EBest OpenAPI 래퍼 기본 기능 제공
---ex) `get_realtime_data()` 메서드 지원
### Changed
- 기존 기능이 대규모로 변경되었을 때 기록하세요.
- ex) 내부 API 응답 포맷 변경
### Deprecated
- 앞으로 제거될 예정인 기능을 명시하세요.
- ex) `old_fetch_price()` 메서드 (v1.3.0에서 제거 예정)
### Removed
- 기능이 제거되었을 때 기록하세요.
- ex) `legacy_mode` 옵션 제거
### Fixed
- 버그 수정 내용을 기록하세요.
- ex) 날짜 필터링 시 경계값 오류 수정
### Security
- 보안 이슈 대응 내역을 기록하세요.
- ex) OAuth 토큰 누수 취약점 패치
---
+98
View File
@@ -0,0 +1,98 @@
# finestock
Korean Stock OpenAPI Package (LS, KIS)
Created by alshin
---
## Table of Contents
1. [설치](#설치)
2. [아키텍처](#아키텍처)
3. [사용법](#사용법)
4. [Release Notes](#release-notes)
5. [License](#license)
---
## 설치
```bash
pip install finestock
```
---
## 아키텍처
`finestock`은 **파사드 패턴(Facade Pattern)**과 **인터페이스 분리 원칙(ISP)**을 결합하여 설계되었습니다.
### 1. 통합된 상태 관리 (Facade)
`create_api`로 생성되는 객체는 인증, 시세, 주문 등 모든 기능을 통합하여 관리합니다. 이를 통해 로그인 세션이나 소켓 연결 상태를 여러 모듈이 공유할 수 있어 사용이 편리합니다.
### 2. 인터페이스를 통한 명확한 사용 (ISP)
하나의 거대한 객체이지만, **타입 힌팅(Type Hinting)**을 통해 필요한 기능만 노출하여 안전하게 사용할 수 있습니다.
- `AuthenticationProvider`: 로그인 및 토큰 관리
- `MarketDataProvider`: 과거 시세(이력) 조회
- `RealtimeProvider`: 실시간 시세 수신
- `TradingProvider`: 주식 주문 및 잔고 조회
---
## 사용법
### 1. 기본 사용 (Factory & Interface)
```python
import finestock
from finestock import APIProvider
from finestock.comm.api_interface import AuthenticationProvider, MarketDataProvider
# 1. API 객체 생성 (통합 객체)
api = finestock.create_api(APIProvider.LS)
# 2. 인증 (AuthenticationProvider 인터페이스 활용)
if isinstance(api, AuthenticationProvider):
api.set_oauth_info("YOUR_APP_KEY", "YOUR_APP_SECRET")
# api.oauth() # 로그인 필요 시 호출
# 3. 데이터 조회 (MarketDataProvider 인터페이스 활용)
if isinstance(api, MarketDataProvider):
# IDE에서 get_ohlcv 등 시세 관련 메서드만 자동완성됨
df = api.get_ohlcv("005930", frdate="20250101", todate="20250110")
print(df)
```
### 2. 실시간 데이터 (Queue Injection)
```python
import queue
from finestock.comm.api_interface import RealtimeProvider
if isinstance(api, RealtimeProvider):
# 1. 데이터를 받을 큐 생성
q = queue.Queue()
# 2. 큐 주입
api.set_data_queue(q)
# 3. 데이터 수신 (비동기 루프 실행 필요)
# ... (자세한 예제는 example_v1.py 참조)
### 3. 타입 힌팅 활용 (Type Hinting)
IDE에서 인터페이스별 메서드만 자동완성되도록 하려면 변수에 타입을 명시할 있습니다.
```python
from finestock.comm.api_interface import MarketDataProvider
# api 변수는 모든 기능을 가지고 있지만...
full_api = finestock.create_api(APIProvider.LS)
# MarketDataProvider로 타입을 명시하면 시세 관련 메서드만 자동완성에 노출됩니다.
market_api: MarketDataProvider = full_api
# market_api. (여기서 get_ohlcv 등만 보임)
df = market_api.get_ohlcv("005930")
```
```