ENH: read_csv(data_url, verify = False) #36807
Labels
Duplicate Report
Duplicate issue or pull request
Enhancement
IO Data
IO issues that don't fit into a more specific label
Is your feature request related to a problem?
Pandas currently allows a csv to be opened from a URL, but does not allow you to set verify to false in the event that URL has an ssl certificate error.
Describe the solution you'd like
please add verify=false parameter to the pandas.read_csv() function when reading a file from a weburl.
API breaking implications
not sure
Describe alternatives you've considered
downloading the file first locally and overriding the ssl error via request.
Additional context
SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1076)
During handling of the above exception, another exception occurred:
URLError Traceback (most recent call last)
in
----> 1 df = pd.read_csv(fileDl)
# Your code here, if applicable
The text was updated successfully, but these errors were encountered: