sigdeletras / Spanish_Inspire_Catastral_Downloader

A QGIS plugin to download cadastral data from INSPIRE Services of Spanish Cadastral Cartography
GNU General Public License v3.0
23 stars 10 forks source link

Problemas al modificar el timeout por defecto de la libreria SOCKET #19

Closed AdriNicolau closed 3 weeks ago

AdriNicolau commented 3 years ago

PROBLEMA

https://github.com/sigdeletras/Spanish_Inspire_Catastral_Downloader/blob/77f581f00f5b6b8aea068ae23317acb2c9627fb8/Spanish_Inspire_Catastral_Downloader.py#L122

SOLUCION

AdriNicolau commented 3 years ago

Otra solucion seria:

request = urllib.urlopen("http://www.videoURL.mp4", timeout=500)
with open("filename.mp4", 'wb') as f:
    try:
        f.write(request.read())
    except:
        print("error")