pyminerva 0.0.330__tar.gz → 0.0.332__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 (21) hide show
  1. {pyminerva-0.0.330 → pyminerva-0.0.332}/PKG-INFO +1 -1
  2. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/tech.py +5 -2
  3. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva.egg-info/PKG-INFO +1 -1
  4. {pyminerva-0.0.330 → pyminerva-0.0.332}/setup.py +1 -1
  5. {pyminerva-0.0.330 → pyminerva-0.0.332}/LICENSE +0 -0
  6. {pyminerva-0.0.330 → pyminerva-0.0.332}/README.md +0 -0
  7. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/__init__.py +0 -0
  8. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/base.py +0 -0
  9. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/data/__init__.py +0 -0
  10. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/strategy.py +0 -0
  11. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/utils/__init__.py +0 -0
  12. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/utils/constant.py +0 -0
  13. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/utils/naverApi.py +0 -0
  14. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva/utils/strategy_funcs.py +0 -0
  15. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva.egg-info/SOURCES.txt +0 -0
  16. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva.egg-info/dependency_links.txt +0 -0
  17. {pyminerva-0.0.330 → pyminerva-0.0.332}/pyminerva.egg-info/top_level.txt +0 -0
  18. {pyminerva-0.0.330 → pyminerva-0.0.332}/setup.cfg +0 -0
  19. {pyminerva-0.0.330 → pyminerva-0.0.332}/tests/test_economics_db.py +0 -0
  20. {pyminerva-0.0.330 → pyminerva-0.0.332}/tests/test_global_.py +0 -0
  21. {pyminerva-0.0.330 → pyminerva-0.0.332}/tests/test_strategy.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyminerva
3
- Version: 0.0.330
3
+ Version: 0.0.332
4
4
  Summary: To get an insight from Financial Data Anlaysis
5
5
  Home-page:
6
6
  Author: Jeongmin Kang
@@ -604,8 +604,11 @@ def get_tech_yf_stastics(ticker):
604
604
  for j, tr in enumerate(table.select("tr:has(td)")):
605
605
  td_row = [td.text for td in tr.find_all("td")]
606
606
  data_valuation.append(td_row)
607
- th_row[0] = 'Item'
608
- df_valuation = pd.DataFrame(data=data_valuation, columns=th_row)
607
+ try:
608
+ th_row[0] = 'Item'
609
+ df_valuation = pd.DataFrame(data=data_valuation, columns=th_row)
610
+ except Exception as e:
611
+ df_valuation = pd.DataFrame()
609
612
  else:
610
613
  th_row = [th.text for th in table.find_all("th")]
611
614
  for j, tr in enumerate(table.select("tr:has(td)")):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyminerva
3
- Version: 0.0.330
3
+ Version: 0.0.332
4
4
  Summary: To get an insight from Financial Data Anlaysis
5
5
  Home-page:
6
6
  Author: Jeongmin Kang
@@ -11,7 +11,7 @@ with open('requirements.txt') as f:
11
11
 
12
12
  setup(
13
13
  name='pyminerva',
14
- version='0.0.330', # version.directory.file
14
+ version='0.0.332', # 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