Hello, 

When using yfinance in research env I get this 443 error, is there a workaround?

import yfinance as yf
yf.Ticker("MSFT").info

> ProxyError: HTTPSConnectionPool(host='fc.yahoo.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Unable to connect to proxy', OSError('Tunnel connection failed: 403 Forbidden')))

 

However, using download for the same host works:

qb = QuantBook()
qb.Download("fc.yahoo.com")