analyser_hj3415 2.6.1__tar.gz → 2.6.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (22) hide show
  1. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/PKG-INFO +1 -1
  2. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/cli.py +4 -3
  3. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/pyproject.toml +1 -1
  4. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.DS_Store +0 -0
  5. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.gitattributes +0 -0
  6. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.gitignore +0 -0
  7. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.idea/.gitignore +0 -0
  8. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.idea/analyser-hj3415.iml +0 -0
  9. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  10. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.idea/misc.xml +0 -0
  11. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.idea/modules.xml +0 -0
  12. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/.idea/vcs.xml +0 -0
  13. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/LICENSE +0 -0
  14. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/README.md +0 -0
  15. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/.DS_Store +0 -0
  16. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/__init__.py +0 -0
  17. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/analysers/eval.py +0 -0
  18. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/analysers/report.py +0 -0
  19. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/analysers/score.py +0 -0
  20. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/myredis.py +0 -0
  21. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/tools.py +0 -0
  22. {analyser_hj3415-2.6.1 → analyser_hj3415-2.6.2}/analyser_hj3415/trash.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: analyser_hj3415
3
- Version: 2.6.1
3
+ Version: 2.6.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
@@ -83,7 +83,7 @@ def analyser_manager():
83
83
  if args.type == 'red':
84
84
  if args.command == 'score':
85
85
  # 기대 수익률과 refresh 값 처리
86
- expect_earn = args.expect_earn if args.expect_earn is not None else expect_earn_from_setting
86
+ expect_earn = float(args.expect_earn if args.expect_earn is not None else expect_earn_from_setting)
87
87
  refresh = args.refresh if args.refresh else False
88
88
 
89
89
  # print(expect_earn, refresh)
@@ -100,8 +100,9 @@ def analyser_manager():
100
100
 
101
101
  elif args.command == 'ranking':
102
102
  # 기대 수익률과 refresh 값 처리
103
- expect_earn = args.expect_earn if args.expect_earn is not None else expect_earn_from_setting
103
+ expect_earn = float(args.expect_earn if args.expect_earn is not None else expect_earn_from_setting)
104
104
  refresh = args.refresh if args.refresh else False
105
+ print(expect_earn, refresh)
105
106
 
106
107
  # red_ranking 함수 호출
107
108
  result = red_ranking(expect_earn, refresh)
@@ -112,7 +113,7 @@ def analyser_manager():
112
113
  elif args.type == 'mil':
113
114
  if args.command == 'score':
114
115
  # 기대 수익률과 refresh 값 처리
115
- expect_earn = args.expect_earn if args.expect_earn is not None else expect_earn_from_setting
116
+ expect_earn = float(args.expect_earn if args.expect_earn is not None else expect_earn_from_setting)
116
117
  refresh = args.refresh if args.refresh else False
117
118
 
118
119
  if args.code == 'all':
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "analyser_hj3415"
7
- version = "2.6.1"
7
+ version = "2.6.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