Search code examples
pythonpandasencodingread-csv

list of pandas read_csv encoding list


I'm looking for a list of pandas read_csv encoding option strings.

I found the following URL documenting the parameters of the read_csv function but it doesn't include a list of possible encoding options for read_csv.

http://pandas.pydata.org/pandas-docs/version/0.13.1/generated/pandas.io.parsers.read_csv.html

Can anyone help me with this?


Solution

  • Here's a list of available python 3 encodings -

    https://docs.python.org/3/library/codecs.html#standard-encodings

    I don't think pandas includes or excludes any additional encodings.