analyser_hj3415 2.9.5__tar.gz → 2.9.6__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/.DS_Store +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/PKG-INFO +2 -2
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/cli.py +10 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/pyproject.toml +1 -1
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/README.md +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/.DS_Store +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/__init__.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/eval.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/tsa.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/workroom/__init__.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/workroom/mysklearn.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/workroom/mysklearn2.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/workroom/score.py +0 -0
- {analyser_hj3415-2.9.5 → analyser_hj3415-2.9.6}/analyser_hj3415/workroom/trash.py +0 -0
Binary file
|
@@ -56,6 +56,11 @@ def analyser_manager():
|
|
56
56
|
caching_parser = lstm_subparser.add_parser('caching', help='lstm 랭킹 책정 및 레디스 저장')
|
57
57
|
caching_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
|
58
58
|
caching_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
|
59
|
+
# red - get 파서
|
60
|
+
lstm_get_parser = lstm_subparser.add_parser('get', help='lstm get 책정 및 레디스 저장')
|
61
|
+
lstm_get_parser.add_argument('code', type=str, help='종목코드')
|
62
|
+
lstm_get_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
|
63
|
+
lstm_get_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
|
59
64
|
|
60
65
|
# red 명령어 서브파서
|
61
66
|
red_parser = type_subparsers.add_parser('red', help='red 타입')
|
@@ -222,6 +227,11 @@ def analyser_manager():
|
|
222
227
|
result = tsa.MyLSTM('005930').caching_based_on_prophet_ranking(refresh=args.refresh)
|
223
228
|
if args.noti:
|
224
229
|
noti.telegram_to('manager', "오늘의 lstm caching을 레디스캐시에 저장했습니다.(유효 24시간)")
|
230
|
+
elif args.command == 'get':
|
231
|
+
assert utils.is_6digit(args.code), "code 인자는 6자리 숫자이어야 합니다."
|
232
|
+
result = tsa.MyLSTM(args.code).get_final_predictions(refresh=args.refresh)
|
233
|
+
if args.noti:
|
234
|
+
noti.telegram_to('manager', f"LSTM 분석을({args.code})를 레디스 캐시에 저장했습니다.(유효 12시간)")
|
225
235
|
elif args.type == 'setting':
|
226
236
|
if args.command == 'set':
|
227
237
|
settings_manager.set_value(args.title, args.value)
|
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
|