mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 10:32:27 +08:00
6 lines
117 B
Python
6 lines
117 B
Python
![]() |
from datetime import datetime
|
||
|
import time
|
||
|
|
||
|
def nowTimestamp():
|
||
|
return time.mktime(datetime.utcnow().timetuple())
|