summaryrefslogtreecommitdiff
path: root/MySQLdb/MySQLdb/pytimes.py
blob: 338afbf8637bf99c500224aa8bf9de1ea47a3d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""Use Python datetime module to handle date and time columns."""

# datetime is only in Python 2.3 or newer, so it is safe to use
# string methods. However, have to use apply(func, args) instead
# of func(*args) because 1.5.2 will reject the syntax.

from time import localtime
from datetime import date, datetime, time, timedelta

Date = date
Time = time
Timestamp = datetime

DateTimeDeltaType = type(timedelta)
DateTimeType = type(datetime)

def DateFromTicks(ticks):
    """Convert UNIX ticks into a date instance."""
    return apply(date, localtime(ticks)[:3])

def TimeFromTicks(ticks):
    """Convert UNIX ticks into a time instance."""
    return apply(time, localtime(ticks)[3:6])

def TimestampFromTicks(ticks):
    """Convert UNIX ticks into a datetime instance."""
    return apply(datetime, localtime(ticks)[:6])

format_TIME = format_TIMESTAMP = format_DATE = str

def DateTime_or_None(s):
    if ' ' in s:
        sep = ' '
    elif 'T' in s:
        sep = 'T'
    else:
        return None

    try:
        d, t = s.split(sep, 1)
        return apply(datetime, tuple(d.split('-')+t.split(':')))
    except:
        return None

def TimeDelta_or_None(s):
    try:
        h, m, s = map(float, s.split(':'))
        if h < 0:
            return -timedelta(hours=h, minutes=m, seconds=s)
        else:
            return timedelta(hours=h, minutes=m, seconds=s)
    except:
        return None

def Date_or_None(s):
    try: return apply(date, tuple(s.split('-',2)))
    except: return None