Skip to content

Instantly share code, notes, and snippets.

@amacal
Last active November 10, 2020 14:05
Show Gist options
  • Save amacal/a13a4ce66e33bcad2096ea730b12c654 to your computer and use it in GitHub Desktop.
Save amacal/a13a4ce66e33bcad2096ea730b12c654 to your computer and use it in GitHub Desktop.
from ftplib import FTP
ftp = FTP('ftp.acc.umu.se')
ftp.login()
ftp.cwd('mirror/wikimedia.org/dumps/enwiki/20201020/')
filename = 'enwiki-20201020-langlinks.sql.gz'
with open(filename, 'wb') as fp:
ftp.retrbinary(f'RETR {filename}', fp.write)
ftp.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment