my model
create = models.DateTimeField(auto_now_add=True)
how to get unix time from this field?
datetime.datetime.timestamp()
but I need int
Here create is a simple python datetime.datetime instance itself.
For python less than 2.x
You can do .
my_model = MyModel()
int(my_model.create.strftime('%s'))
For python 3.3+
You can just do
my_model = MyModel()
my_model.create.timestamp()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With