Do you know how I can set time using Python Arrow to today at 00:00:00 and to now in localtime. With time library I do something similar but in UTC:
from_date_str = time.strftime("%Y-%m-%d 00:00")
to_date_str = time.strftime("%Y-%m-%d %H:%M")
thanks.
ok I solved with