I'm trying to download a zip file from an FTP link. I've tried to use request package but could not download
import requests
url = 'ftp://ftp.ibge.gov.br/Precos_Indices_de_Precos_ao_Consumidor/IPCA/Serie_Historica/ipca_SerieHist.zip'
r = requests.get(url)
Is there an easy way to download it? I can download it from the Chrome and don't need any type of login and password Thanks