analyser_hj3415 4.5.2__tar.gz → 4.5.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/PKG-INFO +1 -1
  2. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/eval/red.py +3 -3
  3. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/pyproject.toml +1 -1
  4. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/README.md +0 -0
  5. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/.DS_Store +0 -0
  6. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/__init__.py +0 -0
  7. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/__init__.py +0 -0
  8. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/eval/__init__.py +0 -0
  9. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/eval/blue.py +0 -0
  10. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/eval/common.py +0 -0
  11. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/eval/growth.py +0 -0
  12. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/eval/mil.py +0 -0
  13. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/tsa/__init__.py +0 -0
  14. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/tsa/common.py +0 -0
  15. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/tsa/lstm.py +0 -0
  16. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/analyser/tsa/myprophet.py +0 -0
  17. {analyser_hj3415-4.5.2 → analyser_hj3415-4.5.3}/analyser_hj3415/cli.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: analyser_hj3415
3
- Version: 4.5.2
3
+ Version: 4.5.3
4
4
  Summary: Stock analyser and database processing programs
5
5
  Requires-Python: >=3.6
6
6
  Description-Content-Type: text/markdown
@@ -94,7 +94,7 @@ class Red:
94
94
  self.c103 = myredis.C103(code, 'c103재무상태표q')
95
95
 
96
96
  self.name = self.c101.get_name()
97
- self.recent_price = tools.to_float(self.c101.get_recent()['주가'])
97
+ self.recent_price = tools.to_float(self.c101.get_recent().get('주가',None))
98
98
  self._code = code
99
99
 
100
100
  self.expect_earn = expect_earn
@@ -114,7 +114,7 @@ class Red:
114
114
  self.c103.code = code
115
115
 
116
116
  self.name = self.c101.get_name()
117
- self.recent_price = tools.to_float(self.c101.get_recent()['주가'])
117
+ self.recent_price = tools.to_float(self.c101.get_recent().get('주가',None))
118
118
  self._code = code
119
119
 
120
120
  def _calc비유동부채(self, refresh: bool) -> Tuple[str, float]:
@@ -227,7 +227,7 @@ class Red:
227
227
 
228
228
  _, 발행주식수 = self.c103.latest_value_pop2('발행주식수', refresh)
229
229
  if math.isnan(발행주식수):
230
- 발행주식수 = tools.to_int(self.c101.get_recent(refresh).get('발행주식'))
230
+ 발행주식수 = tools.to_int(self.c101.get_recent(refresh).get('발행주식',None))
231
231
  else:
232
232
  발행주식수 = 발행주식수 * 1000
233
233
 
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
5
5
 
6
6
  [project]
7
7
  name = "analyser_hj3415"
8
- version = "4.5.2"
8
+ version = "4.5.3"
9
9
  description = "Stock analyser and database processing programs"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.6"