As mentioned in another poster, you can try:
df = pd.read_csv('1459966468_324.csv', encoding='utf8')
However, this may leave you looking at the "object" when printing dtypes. To confirm that they are utf8, try this line after reading the CSV:
df.apply(lambda x: pd.lib.infer_dtype(x.values))
Output Example:
args unicode date datetime64 host unicode kwargs unicode operation unicode
source share