【发布时间】:2021-05-06 10:47:07
【问题描述】:
鳕鱼
import requests
irancell='https://shop.irancell.ir/charge/fa/'
mci='https://shop.mci.ir/charge'
Page_Url=requests.get(irancell)
print('Irancell',Page_Url)
Page_Url1=requests.get(mci)
print('mci',Page_Url1)
错误
我在第6行遇到了这个问题,
Exception has occurred: SSLError HTTPSConnectionPool(host='shop.mci.ir', port=443): Max retries exceeded with url: /charge (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1123)')))
当然我不得不说,当网站正常运行时
500:内部服务器错误: 通用错误消息,在遇到意外情况且没有更具体的消息适合时给出
请告诉我
【问题讨论】:
标签: python python-3.x python-requests python-3.9