python ftplib retrbinary æøå

592 Views Asked by At

I'm having a strange problem with Nordic characters 'æøå' when I download using ftplib.

When using this part of the code:

source_file = 'file_w_æøå.zip'
ftp.retrbinary('RETR %s' % source_file, open(local_file, 'wb').write)

I get this error:

return getattr(self._sock,name)(*args)
UnicodeEncodeError: 'ascii' codec can't encode characters u'\xe6' in position 12-14: ordinal not in range(128)

The funny thing is, if i replace the string with the real value like this:

ftp.retrbinary('RETR %s' % 'file_w_æøå.zip', open(local_file, 'wb').write)

The file is downloaded with no problems?!

I've tried almost everything with decode/encode with utf-8, I'm only missing to try the right thing :)

Hopefully you guys can help :)

PS When in use special characters in the local_file variable, the it works with out errors.


Full code added, not picture perfect, still a newbi:

#!/usr/local/bin/python
# -*- coding: utf-8 -*-
import os
import sys 
import ConfigParser 
import ftplib
import codecs

sysCodec = sys.getfilesystemencoding()
print('sysCodec: %s' % sysCodec)

# Get the argument (a) Section in config file
extract_conf = sys.argv[1]

configParser = ConfigParser.SafeConfigParser()
configFilePath = r'C:\\FTP_DL\\config.ini'
configParser.read(configFilePath)

#set variable from Config file
try:
    host = configParser.get(extract_conf, 'url')
    #print('Host %s'  % host)
    user = configParser.get(extract_conf, 'user') 
    #print('User %s'  % user)
    pw = configParser.get(extract_conf, 'pw')
    #print('PW %s'  % pw)
    ftp_dir = configParser.get(extract_conf, 'ftp_dir').decode('utf-8')
    print('FTP_DIR: %s'  % ftp_dir)
    dest_dir = configParser.get(extract_conf, 'dest_dir').decode('utf-8')
    print('DEST_DIR: %s'  % dest_dir)
    dest_file = configParser.get(extract_conf, 'dest_file').decode('utf-8')
    print('DEST_FILE: %s'  % dest_file)
    source_file = configParser.get(extract_conf, 'source_file').decode('utf-8')
    print('SOURCE_FILE: %s'  % source_file)
    local_file = os.path.join(dest_dir, dest_file)
    print('Local_File: %s' % local_file)
except 'NoSectionError':
    print ('Section %s not found' % extract_conf)
    sys.exit()


ftp = ftplib.FTP(host)
ftp.login(user,pw)
ftp.cwd(ftp_dir)
ftp.retrbinary(retr, open(local_file, 'wb').write) 
ftp.quit()  
0

There are 0 best solutions below