Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

list of pandas read_csv encoding list

Tags:

python

pandas

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?

like image 390
lessthanl0l Avatar asked Aug 27 '14 14:08

lessthanl0l


1 Answers

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.

like image 192
Shashank Agarwal Avatar answered Oct 12 '22 15:10

Shashank Agarwal