No Data Descriptor
from time import time
class Epoch:
# intance - экземпляр класса с которого происходит обращение к свойству
# owner_class - класс собственник
def __get__(self, instance, owner_class):
return int(time())
class MyTime:
epoch = Epoch()
m = MyTime()
print(m.epoch)
# 15984124424 - время в секундах
123456789101112131415Last updated