pyminerva 0.0.332__tar.gz → 0.0.333__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.
- {pyminerva-0.0.332 → pyminerva-0.0.333}/PKG-INFO +1 -1
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/tech.py +2 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva.egg-info/PKG-INFO +1 -1
- {pyminerva-0.0.332 → pyminerva-0.0.333}/setup.py +1 -1
- {pyminerva-0.0.332 → pyminerva-0.0.333}/LICENSE +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/README.md +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/__init__.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/base.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/data/__init__.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/strategy.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/utils/__init__.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/utils/constant.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/utils/naverApi.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva/utils/strategy_funcs.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva.egg-info/SOURCES.txt +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva.egg-info/dependency_links.txt +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/pyminerva.egg-info/top_level.txt +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/setup.cfg +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/tests/test_economics_db.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/tests/test_global_.py +0 -0
- {pyminerva-0.0.332 → pyminerva-0.0.333}/tests/test_strategy.py +0 -0
|
@@ -599,6 +599,7 @@ def get_tech_yf_stastics(ticker):
|
|
|
599
599
|
data_valuation = []
|
|
600
600
|
data_others = []
|
|
601
601
|
for i, table in enumerate(soup.select("table")):
|
|
602
|
+
print(f"table: {table}")
|
|
602
603
|
if i == 0:
|
|
603
604
|
th_row = [th.text for th in table.find_all("th")]
|
|
604
605
|
for j, tr in enumerate(table.select("tr:has(td)")):
|
|
@@ -609,6 +610,7 @@ def get_tech_yf_stastics(ticker):
|
|
|
609
610
|
df_valuation = pd.DataFrame(data=data_valuation, columns=th_row)
|
|
610
611
|
except Exception as e:
|
|
611
612
|
df_valuation = pd.DataFrame()
|
|
613
|
+
df_others = pd.DataFrame()
|
|
612
614
|
else:
|
|
613
615
|
th_row = [th.text for th in table.find_all("th")]
|
|
614
616
|
for j, tr in enumerate(table.select("tr:has(td)")):
|
|
@@ -11,7 +11,7 @@ with open('requirements.txt') as f:
|
|
|
11
11
|
|
|
12
12
|
setup(
|
|
13
13
|
name='pyminerva',
|
|
14
|
-
version='0.0.
|
|
14
|
+
version='0.0.333', # version.directory.file
|
|
15
15
|
description='To get an insight from Financial Data Anlaysis',
|
|
16
16
|
url='',
|
|
17
17
|
author='Jeongmin Kang',
|
|
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
|