我有以下代码

from mysql.connector import MySQLConnection, Error
from yahoofinancials import YahooFinancials

yahoo_financials = YahooFinancials('AAPL')
historical_stock_prices = yahoo_financials.get_prev_close_price()


此代码导致以下错误消息:

OSError: [Errno socket error] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:645)


该代码在不导入MySQLConnection的情况下也能很好地工作,但是稍后需要MySQLConnection。此外,在我的机器上,MySQLConnection在另一个没有YahooFinancials的python脚本中工作。

最佳答案

对于那些面临相同问题的人,我找到了解决方案。只需更改导入的顺序即可。首先导入YahooFinancials,然后导入MySQLConnection:

from yahoofinancials import YahooFinancials
from mysql.connector import MySQLConnection, Error

yahoo_financials = YahooFinancials('AAPL')
historical_stock_prices = yahoo_financials.get_prev_close_price()


但是不幸的是,我不知道为什么会这样。

10-07 15:06