analyser_hj3415 2.5.2__tar.gz → 2.5.3__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.idea/inspectionProfiles/profiles_settings.xml +1 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/PKG-INFO +1 -1
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/analysers/eval.py +3 -2
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/pyproject.toml +2 -1
- analyser_hj3415-2.5.2/analyser_hj3415/settings.json +0 -1
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.DS_Store +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.gitattributes +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.gitignore +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.idea/.gitignore +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.idea/analyser-hj3415.iml +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.idea/misc.xml +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.idea/modules.xml +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/.idea/vcs.xml +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/LICENSE +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/README.md +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/.DS_Store +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/__init__.py +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/analysers/report.py +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/analysers/score.py +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/cli.py +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/myredis.py +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/tools.py +0 -0
- {analyser_hj3415-2.5.2 → analyser_hj3415-2.5.3}/analyser_hj3415/trash.py +0 -0
@@ -2,7 +2,7 @@
|
|
2
2
|
"""
|
3
3
|
import math
|
4
4
|
|
5
|
-
from analyser_hj3415 import tools
|
5
|
+
from analyser_hj3415 import tools, cli
|
6
6
|
from utils_hj3415 import utils
|
7
7
|
from db_hj3415 import myredis
|
8
8
|
|
@@ -17,7 +17,8 @@ logger.setLevel(logging.WARNING)
|
|
17
17
|
|
18
18
|
|
19
19
|
# 주식을 통한 기대수익률 - 금리가 3%일 경우 두배인 6% 정도로 잡는다.
|
20
|
-
EXPECT_EARN =
|
20
|
+
EXPECT_EARN = cli.AnalyserSettingsManager(cli.SETTINGS_FILE).get_value('EXPECT_EARN')
|
21
|
+
print("EXPECT_EARN: ", EXPECT_EARN)
|
21
22
|
|
22
23
|
|
23
24
|
def red(code: str) -> dict:
|
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "analyser_hj3415"
|
7
|
-
version = "2.5.
|
7
|
+
version = "2.5.3"
|
8
8
|
authors = [{name = "Hyungjin Kim", email = "hj3415@gmail.com"}]
|
9
9
|
description = "Stock analyser and database processing programs"
|
10
10
|
readme = "README.md"
|
@@ -24,4 +24,5 @@ Home = "https://www.hyungjin.kr"
|
|
24
24
|
[tool.flit.sdist]
|
25
25
|
exclude = [
|
26
26
|
'tests/',
|
27
|
+
'analyser_hj3415/settings.json'
|
27
28
|
]
|
@@ -1 +0,0 @@
|
|
1
|
-
{}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|