Download .xls file

Juan Camilo

I've been trying to download a .xls file using urllib like this

from urllib.request import urlretrieve as retrieve 
dls = "https://www.bvc.com.co/mercados/DescargaXlsServlet?archivo=acciones&fecha=2020-04-02&resultados=100&tipoMercado="
retrieve(dls,"Acciones.xls")

But I recieve a long error message starting with:

Traceback (most recent call last):
  File "C:\Users\quiki\AppData\Local\Programs\Python\Python37\lib\urllib\request.py", line 1317, in do_open
    encode_chunked=req.has_header('Transfer-encoding'))

and ending with:

urllib.error.URLError: urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)

I do not know if it has to do with the fact that the URL does not end with ".xls"

Nivardo Albuquerque

That's a ssl cert verification error. That means that the site's certificate is having some kind of problem.

Try this code, it disables the verification.

import requests

dls = "https://www.bvc.com.co/mercados/DescargaXlsServlet?archivo=acciones&  fecha=2020-04-02&resultados=100&tipoMercado="

with open("Acciones.xls","wb") as f:
    f.write(requests.get(dls,verify=False).content)

Hope it helps.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

download.file() download corrupt xls

分類Dev

Ruby / Nokogiri / Mechanize: How to download XLS file?

分類Dev

Download a .xls file from a aspx page using Python

分類Dev

POI HSSF XLS Download issue in Servlet - New XLS file is downloading with previous sheets

分類Dev

download.file()ダウンロード破損したxls

分類Dev

how to read xls file into jtable

分類Dev

Issues in converting CSV file in to XLS

分類Dev

How to load xls data from multiple xls file into hive?

分類Dev

Creating .xls file and On the Spot will be sent with C#

分類Dev

VBA save Excel file as .xls from Access

分類Dev

Download a file with AngularJS

分類Dev

Robot Framework Download File

分類Dev

Download a file in Angular 2

分類Dev

Download a file in Angular 2

分類Dev

Download file synchronously with httpClient

分類Dev

Download File with Micronaut

分類Dev

how to download file with php?

分類Dev

Download a file in the browser

分類Dev

Download file by form PHP

分類Dev

CakePHP download file

分類Dev

How to download a file on a click

分類Dev

How to parse Excel (XLS) file in Javascript/HTML5

分類Dev

C# open and edit .xls file right from stream

分類Dev

how to handle excel file (xlsx,xls) with excel formulas(macros) in python

分類Dev

To make a .xls file from the extracted values from a website

分類Dev

How can I open an .xls file as a separate process

分類Dev

Convert XLS to pipe delimited CSV file via command line

分類Dev

Convert XLS to pipe delimited CSV file via command line

分類Dev

Check if Download Manager downloaded the file