Metadata-Version: 2.1
Name: pyeugene
Version: 1.0.0
Summary: Eugene Investment & Securities Champion Open Api Python Wrapper
Author: Choh0401
Author-email: danielch0401@naver.com
Requires-Python: ==3.9.*
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: certifi (>=2023.7.22,<2024.0.0)
Requires-Dist: numpy (>=1.25.2,<2.0.0)
Requires-Dist: pandas (>=1.5.3,<2.0.0)
Requires-Dist: pypiwin32 (==223)
Requires-Dist: pyqt5 (>=5.15.9,<6.0.0)
Requires-Dist: pyqt5-qt5 (>=5.15.2,<6.0.0)
Requires-Dist: pyqt5-sip (>=12.12.2,<13.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Requires-Dist: pytz (>=2023.3.post1,<2024.0)
Requires-Dist: six (>=1.16.0,<2.0.0)
Requires-Dist: wincertstore (>=0.2,<0.3)
Description-Content-Type: text/markdown

# pyEugene 📈

[![Publish to Pypi](https://github.com/Choih0401/pyEugene/actions/workflows/publish.yml/badge.svg)](https://github.com/Choih0401/pyEugene/actions/workflows/publish.yml)
[![PyPI version](https://badge.fury.io/py/pyeugene.svg)](https://badge.fury.io/py/pyeugene)
[![Downloads](https://static.pepy.tech/personalized-badge/pyeugene?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads)](https://pepy.tech/project/pyeugene)
![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FChoih0401%2FpyEugene&count_bg=%2331C854&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)

Eugene Investment & Securities Champion Open Api Python Wrapper

Free software: [`MIT`](https://github.com/Choih0401/pyEugene/blob/main/LICENSE)

## Demo

![Demo](https://raw.githubusercontent.com/Choih0401/pyEugene/master/images/testRealApi.gif)

## Prerequisites 👓

- Python 3.9.*
- 32 Bit Development environment
- Eugene Web Account (need Eugene securities account)

## Introduction 💻

pyEugene is an unofficial python wrapper for easy use of the Champion Open API provided by Eugene Investment & Securities.

Even if you are not familiar with the functions below, you can use all of them.

* The API structure of OCX provided by Eugene Investment & Securities
* Operating Structure of the Version Processing Program Provided by Eugene Investment & Securities
* Use [`dynamicCall`](https://doc.qt.io/qt-5/qaxbase.html#dynamicCall) function for function invocation in con>
  
<br>
<details>
<summary>한국어 소개 💻</summary>
<br>
pyEugene은 유진투자증권에서 제공하는 Champion Open API를 쉽게 사용하기 위한 비공식 python wrapper입니다.

아래의 기능들을 잘 모르더라도 충분히 모든 기능을 사용할 수 있습니다.

* 유진투자증권에서 제공하는 OCX의 API 구조
* 유진투자증권에서 제공하는 버전처리 프로그램의 작동 구조
* 컨트롤에서 함수 호출을 위한 [`dynamicCall`](https://doc.qt.io/qt-5/qaxbase.html#dynamicCall) 함수 사용
</details>


## Getting Started 🚀

To begin using `pyEugene`, start by installing anaconda(or you can use miniconda):

[`Download anaconda`](https://www.anaconda.com/download/)
[`Download miniconda`](https://docs.conda.io/projects/miniconda/en/latest/index.html)

When you're done installing the anaconda, run the anaconda prompt and set it to a 32-bit development environment

```sh
set CONDA_FORCE_32BIT=1
```

If you replace the anaconda with 32-bit, create a 32-bit virtual environment
(You should use Python 3.9 version)

```sh
conda create --name py39_32 python=3.9
```

When you're done installing, activate virtual environment and use the pip to install `pyEugene`

```sh
conda activate py39_32
pip install pyeugene
```

Once you've installed `pyEugene`, you can start using it right away.
For example, to get real-time stock price using `pyEugene`, enter the following code:

```python
import sys
import os
from pprint import pprint
from dotenv import load_dotenv
from pyeugene.eugene_manager import EugeneManager

if __name__ == "__main__":
    load_dotenv()
    em = EugeneManager(os.getenv("USER_ID"), os.getenv("USER_PW"), os.getenv("CERT_PW"))

    real_cmd = {
        'realId': '21',
        'realKey': '005930',
        'output': ["SCODE", "SNAME", "CMARKETGUBUN", "LTIME", "CPCHECK", "LDIFF", "LCPRICE"]
    }

    em.put_real(real_cmd)
    for i in range(10):
        data = em.get_real()
        pprint(data)
    sys.exit()
```

<br>
<details>
<summary>한국어 사용 가이드 🚀</summary>
<br>

`pyEugene`을 사용하기 위해서는 아나콘다를 설치해야 합니다(미니콘다를 설치해 사용할 수도 있습니다)

[`아나콘다 다운로드`](https://www.anaconda.com/download/)
[`미니콘다 다운로드`](https://docs.conda.io/projects/miniconda/en/latest/index.html)

아나콘다 다운로드가 완료 되었으면 아나콘다 프롬프트를 실행해 32bit 개발환경으로 설정해줘야 합니다

```sh
set CONDA_FORCE_32BIT=1
```

32bit로 설정이 완료 되었으면 32bit 가상 개발 환경을 만들어줍니다
(파이썬 3.9 버전을 사용해야 합니다)

```sh
conda create --name py39_32 python=3.9
```

설치가 모두 끝나면 가상환경을 실행하고 pip를 통해 `pyEugene`을 설치해줍니다

```sh
conda activate py39_32
pip install pyeugene
```

다음부터는 `pyEugene`을 설치하지 않고도 기능을 사용할 수 있습니다.
간단한 예시로 `pyEugene`을 이용해 실시간 시세를 받아오려면 아래 코드를 사용하면 됩니다

```python
import sys
import os
from pprint import pprint
from dotenv import load_dotenv
from pyeugene.eugene_manager import EugeneManager

if __name__ == "__main__":
    load_dotenv()
    em = EugeneManager(os.getenv("USER_ID"), os.getenv("USER_PW"), os.getenv("CERT_PW"))

    real_cmd = {
        'realId': '21',
        'realKey': '005930',
        'output': ["SCODE", "SNAME", "CMARKETGUBUN", "LTIME", "CPCHECK", "LDIFF", "LCPRICE"]
    }

    em.put_real(real_cmd)
    for i in range(10):
        data = em.get_real()
        pprint(data)
    sys.exit()
```
</details>

## Contributions 💬

Feel free to contribute to `pyEugene` fixing bugs.

