Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
428 views
in Technique[技术] by (71.8m points)

python - pandas.read_csv can't import file with accent mark in path

I am developing an application with Python and a QT GUI. I need to import a file to a DataFrame. I use a QFileDialog.getOpenFileName to get the path and filename to open it with pandas.read_csv method. Everything works well until I get a path with special characters like "ó". The pandas.read_csv doesn't work and crash the app.

I try to reproduce the error in console and have the following results:

In[2]: import pandas as pd
Backend Qt5Agg is interactive backend. Turning interactive mode on.

In[3]: path1 = 'F:/Software_Proyects/Python/Proyectos/test_read_csv/FlowData.txt'
In[4]: df1 = pd.read_csv(path1, delim_whitespace=True, dtype=object)

In[5]: path2 = 'F:/Software_Proyects/Python/Proyectos/test_read_csv_with_ó/FlowData.txt'
In[6]: df2 = pd.read_csv(path2, delim_whitespace=True, dtype=object)
Traceback (most recent call last):
  File "C:Program Files (x86)Anaconda3libsite-packagesIPythoncoreinteractiveshell.py", line 2881, in run_code
    exec(code_obj, self.user_global_ns, self.user_ns)
  File "<ipython-input-6-feba8e024d43>", line 1, in <module>
    df2 = pd.read_csv(path2, delim_whitespace=True, dtype=object)
  File "C:Program Files (x86)Anaconda3libsite-packagespandasioparsers.py", line 646, in parser_f
    return _read(filepath_or_buffer, kwds)
  File "C:Program Files (x86)Anaconda3libsite-packagespandasioparsers.py", line 389, in _read
    parser = TextFileReader(filepath_or_buffer, **kwds)
  File "C:Program Files (x86)Anaconda3libsite-packagespandasioparsers.py", line 730, in __init__
    self._make_engine(self.engine)
  File "C:Program Files (x86)Anaconda3libsite-packagespandasioparsers.py", line 923, in _make_engine
    self._engine = CParserWrapper(self.f, **self.options)
  File "C:Program Files (x86)Anaconda3libsite-packagespandasioparsers.py", line 1390, in __init__
    self._reader = _parser.TextReader(src, **kwds)
  File "pandasparser.pyx", line 373, in pandas.parser.TextReader.__cinit__ (pandasparser.c:4184)
  File "pandasparser.pyx", line 669, in pandas.parser.TextReader._setup_parser_source (pandasparser.c:8471)
OSError: Initializing from file failed

the output of show_versions() is:

In[7]: pd.show_versions()

INSTALLED VERSIONS
------------------
commit: None
python: 3.6.0.final.0
python-bits: 32
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 78 Stepping 3, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None

pandas: 0.19.2
nose: 1.3.7
pip: 9.0.1
setuptools: 27.2.0
Cython: 0.25.2
numpy: 1.11.3
scipy: 0.18.1
statsmodels: 0.6.1
xarray: None
IPython: 5.1.0
sphinx: 1.5.1
patsy: 0.4.1
dateutil: 2.6.0
pytz: 2016.10
blosc: None
bottleneck: 1.2.0
tables: 3.2.2
numexpr: 2.6.1
matplotlib: 2.0.0
openpyxl: 2.4.1
xlrd: 1.0.0
xlwt: 1.2.0
xlsxwriter: 0.9.6
lxml: 3.7.2
bs4: 4.5.3
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.1.5
pymysql: None
psycopg2: None
jinja2: 2.9.4
boto: 2.45.0
pandas_datareader: None

As I read in this post Encoding with pandas.read_csv when file name has accents the problem was fixed in pandas 0.14.0.

Any recommendation to solve this problem?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Looking in deep, this behavior comes in a combination of Python 3.6 and pandas.read_csv only in Windows systems.

Python 3.6 change Windows filesystem encoding from "mbcs" to "UTF-8". See Python PEP 529. Use sys.getfilesystemencoding() to get the current file system encoding

I get some solutions around this:

1.- Use this code to change all the app to works with the prior Python <= 3.5 encoding ("mbcs")

import sys
sys._enablelegacywindowsfsencoding()

2.- Pass a file pointer to the pandas.read_csv

with open(path2, 'r') as fp:
    df2 = pd.read_csv(fp, delim_whitespace=True, dtype=object)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...