analyser_hj3415 2.7.2__tar.gz → 2.7.4__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.2 → analyser_hj3415-2.7.4}/PKG-INFO +1 -1
  2. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/cli.py +4 -1
  3. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/eval.py +6 -2
  4. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/pyproject.toml +1 -1
  5. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.DS_Store +0 -0
  6. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.gitattributes +0 -0
  7. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.gitignore +0 -0
  8. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.idea/.gitignore +0 -0
  9. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.idea/analyser-hj3415.iml +0 -0
  10. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  11. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.idea/misc.xml +0 -0
  12. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.idea/modules.xml +0 -0
  13. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/.idea/vcs.xml +0 -0
  14. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/LICENSE +0 -0
  15. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/README.md +0 -0
  16. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/.DS_Store +0 -0
  17. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/__init__.py +0 -0
  18. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/workroom/__init__.py +0 -0
  19. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/workroom/lstm.py +0 -0
  20. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/workroom/myprophet.py +0 -0
  21. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/workroom/mysklearn.py +0 -0
  22. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/workroom/mysklearn2.py +0 -0
  23. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/analyser_hj3415/workroom/score.py +0 -0
  24. {analyser_hj3415-2.7.2 → analyser_hj3415-2.7.4}/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.2
3
+ Version: 2.7.4
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
@@ -140,7 +140,10 @@ def analyser_manager():
140
140
  noti.telegram_to('manager', f"오늘의 Red({args.code})를 레디스캐시에 저장했습니다.(유효 12시간)")
141
141
 
142
142
  elif args.command == 'ranking':
143
- result = eval.Red.ranking(expect_earn=args.expect_earn, refresh=args.refresh)
143
+ if args.refresh:
144
+ result = eval.Red.ranking(expect_earn=args.expect_earn, refresh=True)
145
+ else:
146
+ result = eval.Red.ranking(expect_earn=args.expect_earn, refresh=False)
144
147
  print(result)
145
148
  if args.noti:
146
149
  noti.telegram_to('manager', "오늘의 red ranking을 레디스캐시에 저장했습니다.(유효 12시간)")
@@ -8,7 +8,7 @@ from analyser_hj3415.cli import AnalyserSettingsManager
8
8
  from collections import OrderedDict
9
9
  import logging
10
10
 
11
- analyser_logger = helpers.setup_logger('analyser_logger', logging.INFO)
11
+ analyser_logger = helpers.setup_logger('analyser_logger', logging.WARNING)
12
12
 
13
13
 
14
14
  class Tools:
@@ -331,6 +331,7 @@ class Red:
331
331
  """
332
332
  redis_name = f"{self.code}_red"
333
333
  analyser_logger.info(f"{self} RedData를 레디스캐시에서 가져오거나 새로 생성합니다.. refresh : {refresh}")
334
+ print(f"{self} redisname: '{redis_name}' / expect_earn: {Red.expect_earn} / refresh : {refresh}")
334
335
 
335
336
  def fetch_generate_data(refresh_in: bool) -> dict:
336
337
  return asdict(self._generate_data(refresh_in))
@@ -359,7 +360,7 @@ class Red:
359
360
  refresh = True
360
361
 
361
362
  redis_name = 'red_ranking'
362
- analyser_logger.info(f"redisname: '{redis_name}' / refresh : {refresh}")
363
+ print(f"redisname: '{redis_name}' / expect_earn: {expect_earn} / refresh : {refresh}")
363
364
 
364
365
  def fetch_ranking(expect_earn_in: float, refresh_in: bool) -> dict:
365
366
  data = {}
@@ -635,6 +636,7 @@ class Mil:
635
636
  """
636
637
  redis_name = f"{self.code}_mil"
637
638
  analyser_logger.info(f"{self} MilData를 레디스캐시에서 가져오거나 새로 생성합니다.. refresh : {refresh}")
639
+ print(f"{self} redisname: '{redis_name}' / refresh : {refresh}")
638
640
 
639
641
  def fetch_generate_data(refresh_in: bool) -> dict:
640
642
  return asdict(self._generate_data(refresh_in))
@@ -806,6 +808,7 @@ class Blue:
806
808
  """
807
809
  redis_name = f"{self.code}_blue"
808
810
  analyser_logger.info(f"{self} BlueData를 레디스캐시에서 가져오거나 새로 생성합니다.. refresh : {refresh}")
811
+ print(f"{self} redisname: '{redis_name}' / refresh : {refresh}")
809
812
 
810
813
  def fetch_generate_data(refresh_in: bool) -> dict:
811
814
  return asdict(self._generate_data(refresh_in))
@@ -904,6 +907,7 @@ class Growth:
904
907
  """
905
908
  redis_name = f"{self.code}_growth"
906
909
  analyser_logger.info(f"{self} GrowthData를 레디스캐시에서 가져오거나 새로 생성합니다.. refresh : {refresh}")
910
+ print(f"{self} redisname: '{redis_name}' / refresh : {refresh}")
907
911
 
908
912
  def fetch_generate_data(refresh_in: bool) -> dict:
909
913
  return asdict(self._generate_data(refresh_in))
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "analyser_hj3415"
7
- version = "2.7.2"
7
+ version = "2.7.4"
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