
timex is a datetime processing library allowing you to write time expressions in a DLS as strings. Splitting this out from Winchester as a separate library, since it could be useful elsewhere.
8 lines
258 B
Python
8 lines
258 B
Python
from timex.parser import parse
|
|
from timex.expression import TimexExpressionError, TimexParserError
|
|
from timex.expression import TimexLexerError, TimexError
|
|
from timex.expression import Timestamp, TimeRange, PinnedTimeRange, Duration
|
|
|
|
__version__ = '0.10.0'
|
|
|