backports.datetime-timestamp

Backport of the timestamp method from Python 3.3


License
MIT
Install
pip install backports.datetime-timestamp==1.3.0

Documentation

image

image

tests

Ruff

Code style: Black

image

Backport of the datetime.timestamp() method added in Python 3.3.

Used as:

from backports.datetime_timestamp import timestamp
import datetime

dt = datetime.datetime.utcnow()
# instead of dt.timestamp(), use
timestamp(dt)