6 lines
85 B
Python
6 lines
85 B
Python
|
import arrow
|
||
|
|
||
|
|
||
|
def UTC_now():
|
||
|
return arrow.utcnow().replace(microsecond=0).naive
|