Advertisement
AntonioVillanueva

descarga web y extraccion de fichero zip PYTHON3

Jun 6th, 2019
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.76 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #Antonio Villanueva Segura descarga web y extraccion de fichero zip
  4. #https://media.fdj.fr/static/csv/loto/loto_201703.zip
  5.  
  6. import urllib.request
  7. import time
  8. import zipfile
  9.  
  10. archivoDescargar='https://media.fdj.fr/static/csv/loto/loto_201703.zip'
  11. archivoGuardar='datos.zip'
  12.  
  13. #Abre fichero web
  14. descarga =  urllib.request.urlopen(archivoDescargar)
  15.  
  16. #Crea un fichero
  17. ficheroGuardar=open(archivoGuardar,"wb") #byte mode write
  18.  
  19. #Escribe el fichero
  20. ficheroGuardar.write(descarga.read()) #write() argument must be str, not bytes
  21.  
  22. #Cierra el fichero descargado
  23. ficheroGuardar.close()
  24.  
  25. #Extraccion del fichero descargado        
  26. _zip = zipfile.ZipFile(archivoGuardar)
  27. _zip.extractall('./')
  28.  
  29. #Cierre Zip
  30. _zip.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement