analyser_hj3415 2.7.0__tar.gz → 2.7.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/PKG-INFO +1 -1
  2. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/cli.py +28 -28
  3. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/eval.py +1 -1
  4. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/pyproject.toml +1 -1
  5. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.DS_Store +0 -0
  6. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.gitattributes +0 -0
  7. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.gitignore +0 -0
  8. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.idea/.gitignore +0 -0
  9. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.idea/analyser-hj3415.iml +0 -0
  10. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  11. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.idea/misc.xml +0 -0
  12. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.idea/modules.xml +0 -0
  13. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/.idea/vcs.xml +0 -0
  14. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/LICENSE +0 -0
  15. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/README.md +0 -0
  16. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/.DS_Store +0 -0
  17. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/__init__.py +0 -0
  18. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/__init__.py +0 -0
  19. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/lstm.py +0 -0
  20. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/myprophet.py +0 -0
  21. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/mysklearn.py +0 -0
  22. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/mysklearn2.py +0 -0
  23. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/score.py +0 -0
  24. {analyser_hj3415-2.7.0 → analyser_hj3415-2.7.2}/analyser_hj3415/workroom/trash.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: analyser_hj3415
3
- Version: 2.7.0
3
+ Version: 2.7.2
4
4
  Summary: Stock analyser and database processing programs
5
5
  Author-email: Hyungjin Kim <hj3415@gmail.com>
6
6
  Description-Content-Type: text/markdown
@@ -49,42 +49,42 @@ def analyser_manager():
49
49
  ranking_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
50
50
  ranking_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
51
51
  ranking_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
52
- # red - score 파서
53
- red_score_parser = red_subparser.add_parser('score', help='red score 책정 및 레디스 저장')
54
- red_score_parser.add_argument('code', type=str, help='종목코드 or all')
55
- red_score_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
56
- red_score_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
57
- red_score_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
52
+ # red - get 파서
53
+ red_get_parser = red_subparser.add_parser('get', help='red get 책정 및 레디스 저장')
54
+ red_get_parser.add_argument('code', type=str, help='종목코드 or all')
55
+ red_get_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
56
+ red_get_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
57
+ red_get_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
58
58
 
59
59
  # mil 명령어 서브파서
60
60
  mil_parser = type_subparsers.add_parser('mil', help='millennial 타입')
61
61
  mil_subparser = mil_parser.add_subparsers(dest='command', help='mil 관련된 명령')
62
- # mil - score 파서
63
- mil_score_parser = mil_subparser.add_parser('score', help='mil score 책정 및 레디스 저장')
64
- mil_score_parser.add_argument('code', type=str, help='종목코드 or all')
65
- mil_score_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
66
- mil_score_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
67
- mil_score_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
62
+ # mil - get 파서
63
+ mil_get_parser = mil_subparser.add_parser('get', help='mil get 책정 및 레디스 저장')
64
+ mil_get_parser.add_argument('code', type=str, help='종목코드 or all')
65
+ mil_get_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
66
+ mil_get_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
67
+ mil_get_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
68
68
 
69
69
  # blue 명령어 서브파서
70
70
  blue_parser = type_subparsers.add_parser('blue', help='Blue 타입')
71
71
  blue_subparser = blue_parser.add_subparsers(dest='command', help='blue 관련된 명령')
72
- # blue - score 파서
73
- blue_score_parser = blue_subparser.add_parser('score', help='blue score 책정 및 레디스 저장')
74
- blue_score_parser.add_argument('code', type=str, help='종목코드 or all')
75
- blue_score_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
76
- blue_score_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
77
- blue_score_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
72
+ # blue - get 파서
73
+ blue_get_parser = blue_subparser.add_parser('get', help='blue get 책정 및 레디스 저장')
74
+ blue_get_parser.add_argument('code', type=str, help='종목코드 or all')
75
+ blue_get_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
76
+ blue_get_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
77
+ blue_get_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
78
78
 
79
79
  # growth 명령어 서브파서
80
80
  growth_parser = type_subparsers.add_parser('growth', help='Growth 타입')
81
81
  growth_subparser = growth_parser.add_subparsers(dest='command', help='growth 관련된 명령')
82
- # growth - score 파서
83
- growth_score_parser = growth_subparser.add_parser('score', help='growth score 책정 및 레디스 저장')
84
- growth_score_parser.add_argument('code', type=str, help='종목코드 or all')
85
- growth_score_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
86
- growth_score_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
87
- growth_score_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
82
+ # growth - get 파서
83
+ growth_get_parser = growth_subparser.add_parser('get', help='growth get 책정 및 레디스 저장')
84
+ growth_get_parser.add_argument('code', type=str, help='종목코드 or all')
85
+ growth_get_parser.add_argument('-e', '--expect_earn', type=float, help='기대수익률 (실수 값 입력)')
86
+ growth_get_parser.add_argument('-r', '--refresh', action='store_true', help='래디스 캐시를 사용하지 않고 강제로 재계산 할지')
87
+ growth_get_parser.add_argument('-n', '--noti', action='store_true', help='작업 완료 후 메시지 전송 여부')
88
88
 
89
89
  # setting 명령어 서브파서
90
90
  setting_parser = type_subparsers.add_parser('setting', help='Set and Get settings')
@@ -104,7 +104,7 @@ def analyser_manager():
104
104
  from analyser_hj3415 import eval
105
105
 
106
106
  if args.type == 'red':
107
- if args.command == 'score':
107
+ if args.command == 'get':
108
108
  if args.code == 'all':
109
109
  # 저장된 기대수익률을 불러서 임시저장
110
110
  ee_orig = eval.Red.expect_earn
@@ -146,7 +146,7 @@ def analyser_manager():
146
146
  noti.telegram_to('manager', "오늘의 red ranking을 레디스캐시에 저장했습니다.(유효 12시간)")
147
147
 
148
148
  elif args.type == 'mil':
149
- if args.command == 'score':
149
+ if args.command == 'get':
150
150
  if args.code == 'all':
151
151
  mil = eval.Mil('005930')
152
152
  print("**** Mil - all codes ****")
@@ -163,7 +163,7 @@ def analyser_manager():
163
163
  noti.telegram_to('manager', f"오늘의 Mil({args.code})를 레디스 캐시에 저장했습니다.(유효 12시간)")
164
164
 
165
165
  elif args.type == 'blue':
166
- if args.command == 'score':
166
+ if args.command == 'get':
167
167
  if args.code == 'all':
168
168
  blue = eval.Blue('005930')
169
169
  print("**** Blue - all codes ****")
@@ -180,7 +180,7 @@ def analyser_manager():
180
180
  noti.telegram_to('manager', f"오늘의 Blue({args.code})를 레디스 캐시에 저장했습니다.(유효 12시간)")
181
181
 
182
182
  elif args.type == 'growth':
183
- if args.command == 'score':
183
+ if args.command == 'get':
184
184
  if args.code == 'all':
185
185
  growth = eval.Growth('005930')
186
186
  print("**** Growth - all codes ****")
@@ -187,7 +187,7 @@ class RedData:
187
187
 
188
188
 
189
189
  class Red:
190
- expect_earn = AnalyserSettingsManager().get_value('EXPECT_EARN')
190
+ expect_earn = float(AnalyserSettingsManager().get_value('EXPECT_EARN'))
191
191
 
192
192
  def __init__(self, code: str):
193
193
  assert utils.is_6digit(code), f'Invalid value : {code}'
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "analyser_hj3415"
7
- version = "2.7.0"
7
+ version = "2.7.2"
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