Skip to content

Commit

Permalink
fix: fix stock_financial_abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
albertandking committed Jan 2, 2025
1 parent aa2df42 commit 2eb4d68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions akshare/stock_fundamental/stock_finance.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def stock_financial_report_sina(
"source": symbol_map[symbol],
"type": "0",
"page": "1",
"num": "100",
"num": "1000",
}
r = requests.get(url, params=params)
data_json = r.json()
Expand Down Expand Up @@ -106,7 +106,7 @@ def stock_financial_abstract(symbol: str = "600004") -> pd.DataFrame:
"source": "gjzb",
"type": "0",
"page": "1",
"num": "100",
"num": "1000",
}
r = requests.get(url, params=params)
data_json = r.json()
Expand Down Expand Up @@ -713,7 +713,7 @@ def stock_main_stock_holder(stock: str = "600004") -> pd.DataFrame:
)
print(stock_financial_report_sina_df)

stock_financial_abstract_df = stock_financial_abstract(symbol="600004")
stock_financial_abstract_df = stock_financial_abstract(symbol="600600")
print(stock_financial_abstract_df)

stock_financial_analysis_indicator_df = stock_financial_analysis_indicator(
Expand Down

0 comments on commit 2eb4d68

Please sign in to comment.