nhplug 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nhplug/__init__.py +21 -0
- nhplug-0.0.1.dist-info/METADATA +47 -0
- nhplug-0.0.1.dist-info/RECORD +5 -0
- nhplug-0.0.1.dist-info/WHEEL +4 -0
- nhplug-0.0.1.dist-info/licenses/LICENSE +21 -0
nhplug/__init__.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""nhplug — NH투자증권 REST Open API (NHPLUG) 공식 Python SDK.
|
|
2
|
+
|
|
3
|
+
이 배포본(v0.0.1)은 패키지명 확보를 위한 사전 공개판입니다.
|
|
4
|
+
정식 버전은 준비 중이며, 샘플코드와 명세는 공식 GitHub 를 참고하세요.
|
|
5
|
+
|
|
6
|
+
- API 포털: https://www.nhplug.com
|
|
7
|
+
- 공식 GitHub: https://github.com/plug-support/nhplug-sdk
|
|
8
|
+
- 문의: apisupport@nhsec.com
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
__version__ = "0.0.1"
|
|
12
|
+
|
|
13
|
+
_NOTICE = (
|
|
14
|
+
"[nhplug] 정식 버전 준비 중입니다. "
|
|
15
|
+
"샘플코드는 https://github.com/plug-support/nhplug-sdk 를 참고하세요."
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def info() -> str:
|
|
20
|
+
"""패키지 상태 안내 문자열을 반환합니다."""
|
|
21
|
+
return _NOTICE
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nhplug
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: NH투자증권 REST Open API (NHPLUG) 공식 Python SDK — 정식 버전 준비 중 (Official Python SDK for NH Investment & Securities Open API — coming soon)
|
|
5
|
+
Project-URL: Homepage, https://www.nhplug.com
|
|
6
|
+
Project-URL: Documentation, https://www.nhplug.com
|
|
7
|
+
Project-URL: Repository, https://github.com/plug-support/nhplug-sdk
|
|
8
|
+
Project-URL: Issues, https://github.com/plug-support/nhplug-sdk/issues
|
|
9
|
+
Author-email: NH Investment & Securities <apisupport@nhsec.com>
|
|
10
|
+
License: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: korea-stock,nh-investment,nhplug,openapi,securities,trading-api
|
|
13
|
+
Classifier: Development Status :: 1 - Planning
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Natural Language :: Korean
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
20
|
+
Requires-Python: >=3.9
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# nhplug
|
|
24
|
+
|
|
25
|
+
**NH투자증권 REST Open API (NHPLUG) 공식 Python SDK — 정식 버전 준비 중입니다.**
|
|
26
|
+
|
|
27
|
+
이 배포본(v0.0.1)은 패키지명 확보를 위한 사전 공개판이며, 실제 기능이 포함되어 있지 않습니다.
|
|
28
|
+
정식 버전(v0.1.0~)에서 인증·토큰 관리·시세/계좌/주문 API 클라이언트와 CLI가 제공될 예정입니다.
|
|
29
|
+
|
|
30
|
+
The official Python SDK for NH Investment & Securities REST Open API (NHPLUG).
|
|
31
|
+
This is a placeholder release; the first functional release is in preparation.
|
|
32
|
+
|
|
33
|
+
## 지금 바로 사용하려면
|
|
34
|
+
|
|
35
|
+
- **API 포털 / 앱키 발급**: https://www.nhplug.com
|
|
36
|
+
- **공식 GitHub (샘플코드·명세)**: https://github.com/plug-support/nhplug-sdk
|
|
37
|
+
- **Claude 등 AI 연동(MCP)**: https://github.com/plug-support/nhplug-mcp
|
|
38
|
+
- **문의**: apisupport@nhsec.com
|
|
39
|
+
|
|
40
|
+
## 안전 안내
|
|
41
|
+
|
|
42
|
+
- 기본 개발 환경은 테스트 서버(`devapi.nhplug.com`)입니다. 실거래 주소는 사용자가 직접 설정한 경우에만 사용하세요.
|
|
43
|
+
- 앱키/앱시크릿은 계좌 접근 권한입니다. 코드에 하드코딩하지 마세요.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
© NH Investment & Securities Co., Ltd. · MIT License
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
nhplug/__init__.py,sha256=E8WP697EhJ17nuLaJjSshI8Ge29Y736EeHXNNqlMfUQ,662
|
|
2
|
+
nhplug-0.0.1.dist-info/METADATA,sha256=wc0_6nmDxzQFTf3KrRMFMxw9IWQRpv4VuZZwHNNrRE8,2203
|
|
3
|
+
nhplug-0.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
4
|
+
nhplug-0.0.1.dist-info/licenses/LICENSE,sha256=hHyTgr_aeINjiq4DPOqt8-TX_wKgtLFJuxP8pbgIIVo,1093
|
|
5
|
+
nhplug-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 NH Investment & Securities Co., Ltd.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|