mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
tests show warnings for deprecated utc functions with python 3.12 Signed-off-by: moson <moson@archlinux.org>
21 lines
521 B
Python
21 lines
521 B
Python
from datetime import UTC, datetime
|
|
|
|
|
|
class Benchmark:
|
|
def __init__(self):
|
|
self.start()
|
|
|
|
def _timestamp(self) -> float:
|
|
"""Generate a timestamp."""
|
|
return float(datetime.now(UTC).timestamp())
|
|
|
|
def start(self) -> int:
|
|
"""Start a benchmark."""
|
|
self.current = self._timestamp()
|
|
return self.current
|
|
|
|
def end(self):
|
|
"""Return the diff between now - start()."""
|
|
n = self._timestamp() - self.current
|
|
self.current = float(0)
|
|
return n
|