I tried some suggestions from other answers to similar question (https://stackoverflow.com/a/2031297/940208) and what I have so far is:
t = datetime.datetime.today()
tomorrow = datetime.datetime(t.year,t.month,t.day+1,10,0)
The problem is, when we have the last day of month this will fail:
ValueError: day is out of range for month
So how can I rewrite this statement (without wrapping it into IF condition trying to find it this is the last day) to include such situation?
Another question would be - what is a timezone of such timer and how can I work on my current (system) timezone?