analyser_hj3415 2.6.4__tar.gz → 2.6.5__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.4 → analyser_hj3415-2.6.5}/PKG-INFO +1 -1
  2. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/analysers/eval.py +5 -5
  3. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/pyproject.toml +1 -1
  4. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.DS_Store +0 -0
  5. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.gitattributes +0 -0
  6. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.gitignore +0 -0
  7. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.idea/.gitignore +0 -0
  8. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.idea/analyser-hj3415.iml +0 -0
  9. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  10. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.idea/misc.xml +0 -0
  11. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.idea/modules.xml +0 -0
  12. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/.idea/vcs.xml +0 -0
  13. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/LICENSE +0 -0
  14. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/README.md +0 -0
  15. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/.DS_Store +0 -0
  16. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/__init__.py +0 -0
  17. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/analysers/report.py +0 -0
  18. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/analysers/score.py +0 -0
  19. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/cli.py +0 -0
  20. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/myredis.py +0 -0
  21. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/analyser_hj3415/tools.py +0 -0
  22. {analyser_hj3415-2.6.4 → analyser_hj3415-2.6.5}/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.4
3
+ Version: 2.6.5
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
@@ -114,12 +114,12 @@ def mil(code: str) -> dict:
114
114
  d3, 영업활동현금흐름 = c103q.sum_recent_4q('영업활동으로인한현금흐름')
115
115
 
116
116
  d4, roic = c104q.sum_recent_4q('ROIC')
117
- d5, roic_dict = c104q.find_with_yoy('ROIC')
118
- d6, roe = c104q.latest_value_pop2('ROE')
117
+ _, roic_dict = c104q.find_with_yoy('ROIC')
118
+ d5, roe = c104q.latest_value_pop2('ROE')
119
119
  roe106 = c106q.find('ROE')
120
- d7, roa = c104q.latest_value_pop2('ROA')
120
+ d6, roa = c104q.latest_value_pop2('ROA')
121
121
 
122
- d8, pcr_dict = c104q.find_with_yoy('PCR')
122
+ _, pcr_dict = c104q.find_with_yoy('PCR')
123
123
 
124
124
  try:
125
125
  주주수익률 = round((재무활동현금흐름 / marketcap억 * -100), 2)
@@ -146,7 +146,7 @@ def mil(code: str) -> dict:
146
146
  '시가총액억': marketcap억,
147
147
  '투자수익률': {'ROIC': roic, 'ROIC_dict': roic_dict, 'ROE': roe, 'ROE106': roe106, 'ROA': roa},
148
148
  '가치지표': {'FCF': fcf_dict, 'PFCF': pfcf_dict, 'PCR': pcr_dict},
149
- 'date': tools.set_data(d1, d2, d3, d4, d5, d6, d7, d8),
149
+ 'date': tools.set_data(d1, d2, d3, d4, d5, d6),
150
150
  }
151
151
 
152
152
 
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "analyser_hj3415"
7
- version = "2.6.4"
7
+ version = "2.6.5"
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