I’ve been working on a stock screener using python and when I tried working on it again after taking a break, my program stopped printing things out and honestly, it’s like it is skipping the whole program. Even running something easy like printing one line does not work when importing yfinance. This is only specific to this library, others like datetime, pandas, and requests don’t do anything to it. Anyone have any suggestions?
Trying something like this will not print anything:
import yfinance
print(2)
However, this will print 4:
print(4)
import yfinance
print(2)
user25815618 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.