每次我尝试使用yfinance获取股票价格时,它都会打印以下评论:
[*********************100%***********************] 1 of 1 completed
有没有办法摆脱它?
data = yf.download(ticker, startDate.strftime("%Y-%m-%d"), endDate.strftime("%Y-%m-%d"))
jucafojl1#
下载方法
def download(tickers, start=None, end=None, actions=False, threads=True, group_by='column', auto_adjust=False, back_adjust=False, progress=True, period="max", interval="1d", prepost=False, proxy=None, rounding=False,**kwargs):
有一个名为 progress 你应该可以设置为 False 禁用进度条。尝试将下载呼叫更改为:
progress
False
data = yf.download( ticker, startDate.strftime("%Y-%m-%d"), endDate.strftime("%Y-%m-%d"), progress=False)
1条答案
按热度按时间jucafojl1#
下载方法
有一个名为
progress
你应该可以设置为False
禁用进度条。尝试将下载呼叫更改为: