So if I have a timestamp in pandas as such:
Timestamp(\'2014-11-07 00:05:00\')
How can I create a new column that just has the \'time\' com
You want .dt.time see the docs for some more examples of things under the .dt accessor.
.dt.time
.dt
df['date_time'].dt.time