You are on page 1of 1

import pandas as pd

dateparse = lambda dates: pd.datetime.strptime(dates, '%a %b %d %H:%M:%S +0000 %Y')


f = pd.read_table('all/Belem.txt',header=None,parse_dates=[5], index_col=5,
date_parser=dateparse)
f.head()

You might also like