backports.datetime-timestamp

Backport of the timestamp method from Python 3.3


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

Documentation

tests Ruff Code style: Black https://img.shields.io/badge/skeleton-2023-informational

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)