Metadata-Version: 2.1
Name: kiwoom-rest-api
Version: 0.1.2
Summary: Kiwoom REST API client for Python
Author: bamjun
Author-email: khy5116@naver.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: httpx (>=0.28.0,<0.29.0)
Requires-Dist: rich (>=13.0.0,<14.0.0)
Requires-Dist: typer (>=0.9.0,<0.10.0)
Description-Content-Type: text/markdown

# Kiwoom REST API

Python client for interacting with Kiwoom Securities REST API.

## Installation

```bash
pip install kiwoom-rest-api
```

## Usage

```python
from kiwoom_rest_api.api import KiwoomAPI

api = KiwoomAPI()
result = api.get_basic_stock_info("005930")
print(result)
```

## CLI Usage

```bash
kiwoom --help
```











# deploy

## prodution
```
    pip install kiwoom-rest-api
    uv add kiwoom-rest-api
```

### deploy to pypi [site](https://pypi.org/project/kiwoom-rest-api/)
```
    poetry shell
    poetry publish --build
```


## test
```
    pip install -i https://test.pypi.org/simple/ kiwoom-rest-api
```
```
    uv add -i https://test.pypi.org/simple/ kiwoom-rest-api
```

### deploy to test-pypi [site](https://test.pypi.org/project/kiwoom-rest-api/)
```
    poetry shell
    poetry publish --build -r test-pypi
```


# docs
[pypi-keys](https://www.notion.so/pypi-tokens-1d28c2bbc2e080849417f0939de3ffd9)



# License

This project is licensed under the terms of the MIT license.
