Eugene Investment & Securities Champion Open Api Python Wrapper
Project description
pyEugene ๐
Eugene Investment & Securities Champion Open Api Python Wrapper
Free software: MIT
Demo
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
function for function invocation in con>
ํ๊ตญ์ด ์๊ฐ ๐ป
pyEugene์ ์ ์งํฌ์์ฆ๊ถ์์ ์ ๊ณตํ๋ Champion Open API๋ฅผ ์ฝ๊ฒ ์ฌ์ฉํ๊ธฐ ์ํ ๋น๊ณต์ python wrapper์ ๋๋ค.
์๋์ ๊ธฐ๋ฅ๋ค์ ์ ๋ชจ๋ฅด๋๋ผ๋ ์ถฉ๋ถํ ๋ชจ๋ ๊ธฐ๋ฅ์ ์ฌ์ฉํ ์ ์์ต๋๋ค.
- ์ ์งํฌ์์ฆ๊ถ์์ ์ ๊ณตํ๋ OCX์ API ๊ตฌ์กฐ
- ์ ์งํฌ์์ฆ๊ถ์์ ์ ๊ณตํ๋ ๋ฒ์ ์ฒ๋ฆฌ ํ๋ก๊ทธ๋จ์ ์๋ ๊ตฌ์กฐ
- ์ปจํธ๋กค์์ ํจ์ ํธ์ถ์ ์ํ
dynamicCall
ํจ์ ์ฌ์ฉ
Getting Started ๐
To begin using pyEugene
, start by installing anaconda(or you can use miniconda):
Download anaconda
Download miniconda
When you're done installing the anaconda, run the anaconda prompt and set it to a 32-bit development environment
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)
conda create --name py39_32 python=3.9
When you're done installing, activate virtual environment and use the pip to install pyEugene
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:
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()
ํ๊ตญ์ด ์ฌ์ฉ ๊ฐ์ด๋ ๐
pyEugene
์ ์ฌ์ฉํ๊ธฐ ์ํด์๋ ์๋์ฝ๋ค๋ฅผ ์ค์นํด์ผ ํฉ๋๋ค(๋ฏธ๋์ฝ๋ค๋ฅผ ์ค์นํด ์ฌ์ฉํ ์๋ ์์ต๋๋ค)
์๋์ฝ๋ค ๋ค์ด๋ก๋
๋ฏธ๋์ฝ๋ค ๋ค์ด๋ก๋
์๋์ฝ๋ค ๋ค์ด๋ก๋๊ฐ ์๋ฃ ๋์์ผ๋ฉด ์๋์ฝ๋ค ํ๋กฌํํธ๋ฅผ ์คํํด 32bit ๊ฐ๋ฐํ๊ฒฝ์ผ๋ก ์ค์ ํด์ค์ผ ํฉ๋๋ค
set CONDA_FORCE_32BIT=1
32bit๋ก ์ค์ ์ด ์๋ฃ ๋์์ผ๋ฉด 32bit ๊ฐ์ ๊ฐ๋ฐ ํ๊ฒฝ์ ๋ง๋ค์ด์ค๋๋ค (ํ์ด์ฌ 3.9 ๋ฒ์ ์ ์ฌ์ฉํด์ผ ํฉ๋๋ค)
conda create --name py39_32 python=3.9
์ค์น๊ฐ ๋ชจ๋ ๋๋๋ฉด ๊ฐ์ํ๊ฒฝ์ ์คํํ๊ณ pip๋ฅผ ํตํด pyEugene
์ ์ค์นํด์ค๋๋ค
conda activate py39_32
pip install pyeugene
๋ค์๋ถํฐ๋ pyEugene
์ ์ค์นํ์ง ์๊ณ ๋ ๊ธฐ๋ฅ์ ์ฌ์ฉํ ์ ์์ต๋๋ค.
๊ฐ๋จํ ์์๋ก pyEugene
์ ์ด์ฉํด ์ค์๊ฐ ์์ธ๋ฅผ ๋ฐ์์ค๋ ค๋ฉด ์๋ ์ฝ๋๋ฅผ ์ฌ์ฉํ๋ฉด ๋ฉ๋๋ค
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()
Contributions ๐ฌ
Feel free to contribute to pyEugene
fixing bugs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyeugene-1.0.1.tar.gz
.
File metadata
- Download URL: pyeugene-1.0.1.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.13 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f979a459f808facac1ba5f416f3156596f1d577014a9a22ceb764dc88b0d471 |
|
MD5 | db5613ba5f42ea99d3c1a221e678fa52 |
|
BLAKE2b-256 | 204cd5b637d307d19f71456e4369a8c8fcc3fa2df2a6fb8368f2128467c2e931 |
File details
Details for the file pyeugene-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: pyeugene-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.13 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6384badd494ef19378f067266d44fb002f8f29deeaaa25dd088361c1fe7861e |
|
MD5 | 30918e48efadc454b349318a0396b584 |
|
BLAKE2b-256 | d509effcc6bad829c84a2d8c48a29854d8a75792590bb3770903223ae2d5459f |