Aggregate time series in python
How do we aggregate the time series by hour or minutely granularity? If I have a time series like the following then I want the values to be aggregated by hour. Does pandas support it or is there a nifty way to do it in python? timestamp, value 2012-04-30T22:25:31+00:00, 1 2012-04-30T22:25:43+00:00, 1 2012-04-30T22:29:04+00:00, 2 2012-04-30T22:35:09+00:00, 4 2012-04-30T22:39:28+00:00, 1 2012-04-30T22:47:54+00:00, 8 2012-04-30T22:50:49+00:00, 9 2012-04-30T22:51:57+00:00, 1 2012-04-30T22:54:50+00:00, 1 2012-04-30T22:57:22+00:00, 0 2012-04-30T22:58:38+00:00, 7 2012-04-30T23:05:21+00:00, 1 2012-04