删除 yfinance 的评论?

Remove comment from yfinance?

每次我尝试使用 yFinance 获取股票价格时,它都会打印这条评论:

[*********************100%***********************]  1 of 1 completed

有没有办法摆脱它?

data = yf.download(ticker, startDate.strftime("%Y-%m-%d"), endDate.strftime("%Y-%m-%d"))

download method

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 以禁用进度条。

尝试将下载调用更改为:

data = yf.download(
    ticker, startDate.strftime("%Y-%m-%d"), endDate.strftime("%Y-%m-%d"), progress=False)