I have a UTF-8 file with twitter data and I am trying to read it into a Python data frame but I can only get an \'object\' type instead of unicode strings:
#
Use the encoding keyword with the appropriate parameter:
encoding
df = pd.read_csv('1459966468_324.csv', encoding='utf8')