forked from LBRYCommunity/lbry-sdk
9 lines
171 B
Python
9 lines
171 B
Python
|
import datetime
|
||
|
|
||
|
from lbrynet.core.utils import *
|
||
|
|
||
|
|
||
|
def now():
|
||
|
"""Return utc now in isoformat with timezone"""
|
||
|
return datetime.datetime.utcnow().isoformat() + 'Z'
|