analyser_hj3415 2.5.4__tar.gz → 2.5.5__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/PKG-INFO +1 -1
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/cli.py +17 -2
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/pyproject.toml +1 -1
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.DS_Store +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.gitattributes +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.gitignore +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/.gitignore +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/analyser-hj3415.iml +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/misc.xml +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/modules.xml +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/vcs.xml +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/LICENSE +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/README.md +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/.DS_Store +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/__init__.py +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/analysers/eval.py +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/analysers/report.py +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/analysers/score.py +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/myredis.py +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/tools.py +0 -0
- {analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/analyser_hj3415/trash.py +0 -0
@@ -3,7 +3,7 @@ import os
|
|
3
3
|
|
4
4
|
from utils_hj3415 import noti, utils
|
5
5
|
from utils_hj3415.utils import SettingsManager
|
6
|
-
from analyser_hj3415.myredis import red_ranking, mil_n_score
|
6
|
+
from analyser_hj3415.myredis import red_ranking, mil_n_score, red_n_score
|
7
7
|
from db_hj3415 import myredis
|
8
8
|
|
9
9
|
|
@@ -45,6 +45,10 @@ def analyser_manager():
|
|
45
45
|
# red - ranking 파서
|
46
46
|
ranking_parser = red_subparser.add_parser('ranking', help='red 랭킹 책정 및 레디스 저장')
|
47
47
|
ranking_parser.add_argument('--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
|
48
|
+
# mil - score 파서
|
49
|
+
score_parser = red_subparser.add_parser('score', help='red score 책정 및 레디스 저장')
|
50
|
+
score_parser.add_argument('code', type=str, help='종목코드 or all')
|
51
|
+
score_parser.add_argument('--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
|
48
52
|
|
49
53
|
# mil 명령어 서브파서
|
50
54
|
mil_parser = type_subparsers.add_parser('mil', help='millennial 타입')
|
@@ -70,7 +74,18 @@ def analyser_manager():
|
|
70
74
|
args = parser.parse_args()
|
71
75
|
|
72
76
|
if args.type == 'red':
|
73
|
-
if args.command == '
|
77
|
+
if args.command == 'score':
|
78
|
+
if args.code == 'all':
|
79
|
+
print("**** red_n_score all code ****")
|
80
|
+
for i, code in enumerate(myredis.Corps.list_all_codes()):
|
81
|
+
print(f'{i} / {code}')
|
82
|
+
red_n_score(code)
|
83
|
+
else:
|
84
|
+
assert utils.is_6digit(args.code), "code 인자는 6자리 숫자이어야 합니다."
|
85
|
+
print(args.code, red_n_score(args.code))
|
86
|
+
if args.noti:
|
87
|
+
noti.telegram_to('manager', f"오늘의 red and score({args.code})를 레디스캐시에 저장했습니다.(유효 12시간)")
|
88
|
+
elif args.command == 'ranking':
|
74
89
|
result = red_ranking()
|
75
90
|
print(result)
|
76
91
|
if args.noti:
|
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "analyser_hj3415"
|
7
|
-
version = "2.5.
|
7
|
+
version = "2.5.5"
|
8
8
|
authors = [{name = "Hyungjin Kim", email = "hj3415@gmail.com"}]
|
9
9
|
description = "Stock analyser and database processing programs"
|
10
10
|
readme = "README.md"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{analyser_hj3415-2.5.4 → analyser_hj3415-2.5.5}/.idea/inspectionProfiles/profiles_settings.xml
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|