我的代码如下,主要是通过yfinance包下载历史交易数据:
import yfinance as yf
data = yf.download('000001.SZ', start='2017-01-01', end='2019-01-01')
data
错误现象
Failed to get ticker '000001.SZ' reason: HTTPSConnectionPool(host='query1.finance.yahoo.com', port=443): Max retries exceeded with url: /v1/test/getcrumb (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1002)')))
[*********************100%***********************] 1 of 1 completed
1 Failed download:
['000001.SZ']: YFTzMissingError('$%ticker%: possibly delisted; no timezone found')
定位步骤
-
错误码 1002 通常表示 SSL/TLS 握手失败。
-
使用 下面的命令定位原因
openssl s_client -connect query1.finance.yahoo.com:443 -showcerts
看上去一切正常
- 看一下是不是他说的no timezone found的原因
import os
os.environ['TZ']
执行下来发现:
KeyError Traceback (most recent call last)
Cell In[16], line 2
1 import os
----> 2 os.environ['TZ']
File <frozen os>:679, in __getitem__(self, key)
KeyError: 'TZ'
4.有点问题,设置了变量再试还是有问题
我又直接在服务器上试 wget 命令,感觉也不太行:
root@localhost clash\]# wget https://query1.finance.yahoo.com
--2024-11-25 16:32:01-- https://query1.finance.yahoo.com/
Connecting to 127.0.0.1:7890... connected.
Unable to establish SSL connection.
综上没有使用代理时会报错:
```
Failed to get ticker '000001.SZ' reason: HTTPSConnectionPool(host='query1.finance.yahoo.com', port=443): Max retries exceeded with url: /v1/test/getcrumb (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError('