neurostats-API 0.0.24__py3-none-any.whl → 0.0.25__py3-none-any.whl
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.
- neurostats_API/__init__.py +2 -1
- neurostats_API/fetchers/__init__.py +1 -1
- neurostats_API/fetchers/balance_sheet.py +1 -1
- neurostats_API/fetchers/finance_overview.py +513 -194
- neurostats_API/fetchers/institution.py +5 -2
- neurostats_API/tools/company_list/us_TradingView_list.json +49922 -0
- neurostats_API/utils/__init__.py +2 -1
- neurostats_API/utils/data_process.py +2 -2
- neurostats_API/utils/exception.py +3 -0
- {neurostats_API-0.0.24.dist-info → neurostats_API-0.0.25.dist-info}/METADATA +3 -2
- {neurostats_API-0.0.24.dist-info → neurostats_API-0.0.25.dist-info}/RECORD +13 -13
- neurostats_API/fetchers/macro_daily_event.py +0 -8
- neurostats_API/utils/logger.py +0 -21
- {neurostats_API-0.0.24.dist-info → neurostats_API-0.0.25.dist-info}/WHEEL +0 -0
- {neurostats_API-0.0.24.dist-info → neurostats_API-0.0.25.dist-info}/top_level.txt +0 -0
neurostats_API/__init__.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
from .base import StatsDateTime, StatsFetcher
|
2
2
|
from .balance_sheet import BalanceSheetFetcher
|
3
3
|
from .cash_flow import CashFlowFetcher
|
4
|
-
from .finance_overview import FinanceOverviewFetcher
|
4
|
+
from .finance_overview import FinanceOverviewFetcher, AgentFinanceOverviewFetcher
|
5
5
|
from .tej_finance_report import FinanceReportFetcher, TEJStockPriceFetcher
|
6
6
|
from .tech import TechFetcher
|
7
7
|
from .institution import InstitutionFetcher
|
@@ -173,7 +173,7 @@ class BalanceSheetFetcher(StatsFetcher):
|
|
173
173
|
def process_data_us(self, fetched_data):
|
174
174
|
return_dict = {
|
175
175
|
"ticker": self.ticker,
|
176
|
-
"company_name": fetched_data[
|
176
|
+
"company_name": fetched_data['company_name']
|
177
177
|
}
|
178
178
|
table_dict = {}
|
179
179
|
|