
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600Γ Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600Γ faster than humans.
Eugene Investment & Securities Champion Open Api Python Wrapper
Free software: MIT
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.
dynamicCall
function for function invocation in con>μλμ κΈ°λ₯λ€μ μ λͺ¨λ₯΄λλΌλ μΆ©λΆν λͺ¨λ κΈ°λ₯μ μ¬μ©ν μ μμ΅λλ€.
dynamicCall
ν¨μ μ¬μ©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()
Feel free to contribute to pyEugene
fixing bugs.
FAQs
Eugene Investment & Securities Champion Open Api Python Wrapper
We found that pyeugene demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600Γ faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.