I have a dataframe that looks like this
    Date            MBs     GBs
0   2018-08-14 20:10    32.00 MB    0.00 GB
1   2018-08-14 20:05    4.00 MB     0.00 GB
2   2018-08-14 20:00    1000.99 MB  1.23 GB
Ive already done this :
na_aus['Date'] =  pd.to_datetime(na_aus['Date'], format='%Y-%m-%d %H:%M:%S')
But when i try to do a simple filter like this :
na_aus.loc['2018-08-14 19:50' : '2018-08-14 20:10'] 
All I get is:
Date            MBs     GBs
With no data returned.
I tried following this Select dataframe rows between two dates but its not working
 
    