I'm trying to get 30 days records from the table.
df['Form Modified Date']=pd.to_datetime(df['Form Modified Date'].astype(str), format='%Y/%m/%d')
#print (df)
timenow = str(datetime.now().strftime("%Y-%m-%d")) - 30 days
nya= df[(df['Form Modified Date'] == (timenow))]