heyfavour opened a new issue #14060:
URL: https://github.com/apache/airflow/issues/14060
when i use airflow with akshare.tool_trade_date_hist_sina(),i found it
always keep running.
it won't return after execute js_code.call(),
i don't know reason
```
import akshare as ak
df = ak.tool_trade_date_hist_sina()
```
```
def tool_trade_date_hist_sina() -> pd.DataFrame:
"""
"""
url = "https://finance.sina.com.cn/realstock/company/klc_td_sh.txt"
r = requests.get(url)
js_code = py_mini_racer.MiniRacer()
js_code.eval(hk_js_decode)
dict_list = js_code.call('d',
r.text.split("=")[1].split(";")[0].replace('"', "")) # after this function
,tool_trade_date_hist_sina will not return
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]