binary-newsreaderusenetqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodistabletvshows
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
319 B
13 lines
319 B
8 years ago
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
|
||
|
def within_delta(dt1, dt2, delta):
|
||
|
"""
|
||
|
Useful for comparing two datetimes that may a negilible difference
|
||
|
to be considered equal.
|
||
|
"""
|
||
|
delta = abs(delta)
|
||
|
difference = dt1 - dt2
|
||
|
return -delta <= difference <= delta
|