Skip to content

ovos-date-parser

In a nutshell

This is a helper that translates between everyday date and time phrases and the precise dates a computer understands. It works both ways. It can read "next Friday at 3pm" and pin down the exact moment, and it can turn an exact time back into natural words like "three o'clock". It handles many languages, which lets the assistant understand and speak dates the way you do. See the Number parser for the same idea applied to numbers, or the Glossary for terms.

ovos-date-parser is a multilingual library for turning human date/time phrases into Python objects (extract_datetime, extract_duration) and for turning datetime/timedelta objects back into natural spoken or written text (nice_time, nice_date, nice_duration, ...).

What you get in 30 seconds:

from ovos_date_parser import extract_datetime, nice_time
from datetime import datetime

extract_datetime("remind me next friday at 3pm", lang="en")
# [datetime(...), "remind me"]    -> parsed datetime + leftover text, as a 2-item list

nice_time(datetime(2024, 1, 1, 15, 0), lang="en")   # "three o'clock"

Every function takes an explicit lang (BCP-47 code). For extract_datetime, languages without a dedicated implementation fall back to the dateparser library. The nice_* formatters fall back to a language-agnostic English-style generic implementation when a language-specific one is missing.

ovos-date-parser also re-exports extract_timespan and explain from its chronologia dependency, a separate reckoning core (astronomical dates, calendars, eras, cycles). These run alongside the existing extract_datetime/nice_* API, which is unchanged and does not route through chronologia.

Features

  • Date and Time Extraction: extract specific dates and times from natural language phrases in various languages.

  • Duration Parsing: parse phrases that indicate a span of time, such as "two hours and fifteen minutes."

  • Friendly Time Formatting: format time for human-friendly output, supporting both 12-hour and 24-hour formats.

  • Relative Time Descriptions: generate relative descriptions (for example, "tomorrow," "in three days") for given dates.

  • Multilingual Support: extraction and formatting methods for multiple languages, such as English, Spanish, French, and German.

Installation

pip install ovos-date-parser

Languages Supported

ovos-date-parser supports a wide array of languages, each with its own set of methods for handling natural language time expressions.

  • yes - supported

  • no - not supported

  • WIP - imperfect placeholder, usually a language agnostic implementation or external library

Parse

Language extract_duration extract_datetime
an yes yes
ar yes yes
ast yes yes
az yes yes
bg yes yes
ca yes yes
cs yes yes
da yes yes
de yes yes
el no yes
en yes yes
es yes yes
et yes yes
eu yes yes
fa yes yes
fi yes yes
fr yes yes
fy yes yes
gl yes yes
he no yes
hr yes yes
hu yes yes
id no yes
it yes yes
kab yes yes
ms no yes
nb/no yes yes
nl yes yes
nn yes yes
oc yes yes
pl yes yes
pt yes yes
ro yes yes
ru yes yes
sk yes yes
sl yes yes
sv yes yes
tr no yes
uk yes yes

If a language is not implemented for extract_datetime, dateparser is used as a fallback. Most extract_duration languages are driven by a shared lexicon engine (DURATION_LEXICONS in ovos_date_parser/duration.py), so new languages are added declaratively. ar, ast, kab, fa, and sv have standalone extractors instead.

Format

nice_relative_time is marked WIP for every listed locale below except eu, which has a full implementation. WIP here means an imperfect, usually language-agnostic placeholder, per the legend above.

Language nice_date
nice_date_time
nice_day
nice_weekday
nice_month
nice_year
get_date_strings
nice_time nice_relative_time nice_duration
an yes yes WIP yes
ar yes yes WIP yes
ast yes yes WIP yes
az yes yes WIP yes
bg yes yes WIP yes
ca yes yes WIP yes
cs yes yes WIP yes
da yes yes WIP yes
de yes yes WIP yes
el yes yes WIP yes
en yes yes WIP yes
es yes yes WIP yes
et yes yes WIP yes
eu yes yes yes yes
fa yes yes WIP yes
fi yes yes WIP yes
fr yes yes WIP yes
fy yes yes WIP yes
gl yes yes WIP yes
he yes yes WIP yes
hr yes yes WIP yes
hu yes yes WIP yes
id yes yes WIP yes
it yes yes WIP yes
kab yes yes WIP yes
ms yes yes WIP yes
nb/no yes yes WIP yes
nl yes yes WIP yes
nn yes yes WIP yes
oc yes yes WIP yes
pl yes yes WIP yes
pt yes yes WIP yes
ro yes yes WIP yes
ru yes yes WIP yes
sk yes yes WIP yes
sl yes yes WIP yes
sv yes yes WIP yes
tr yes yes WIP yes
uk yes yes WIP yes

If your language is not listed

extract_datetime falls back to the dateparser library for a language with no dedicated implementation, so it still returns a result rather than raising. The nice_* formatters (nice_time, nice_date, nice_relative_time, ...) fall back to a generic, English-style implementation when no language-specific one exists. See the Languages Supported section of the repo README for the current full list.

Usage

Date and Time Extraction

Extract specific dates and times from a phrase. This function identifies date-related terms in natural language and returns both the datetime object and any remaining text.

from ovos_date_parser import extract_datetime

result = extract_datetime("Meet me next Friday at 3pm", lang="en")
print(result)  # [datetime object, "meet me"]

Note

extract_datetime returns a 2-item list, [datetime, leftover_text], not a tuple. The leftover text is lowercased.

Duration Extraction

Identify duration phrases in text and convert them into a timedelta object. This can parse common human-friendly duration expressions like "30 minutes" or "two and a half hours."

from ovos_date_parser import extract_duration

duration, remainder = extract_duration("It will take about 2 hours and 30 minutes", lang="en")
print(duration)   # timedelta(hours=2, minutes=30)
print(remainder)  # "It will take about"

Note

The remainder keeps whatever surrounds the extracted duration phrase verbatim. A connective word ("and" in English, "y" in Spanish) or comma left stranded between two separately-consumed number groups can end up in the remainder too. Clean up the remainder yourself before you display or re-parse it.

extract_duration also accepts two keyword-only arguments, but only for languages on the shared lexicon engine (the yes extract_duration rows above except the standalone ar, ast, kab, fa, sv extractors). Passing them for any other language raises NotImplementedError:

  • resolution (DurationResolution, default TIMEDELTA): controls the return type. TIMEDELTA returns a timedelta. RELATIVEDELTA returns a calendar-accurate dateutil.relativedelta (so "2 months" stays 2 months rather than a fixed number of days). A single-unit total such as TOTAL_SECONDS/TOTAL_MINUTES is returned as a float.
  • replace_token (str, default ""): the string each consumed duration phrase is replaced with in the remainder, marking where it was found instead of stripping it out.
from ovos_date_parser import extract_duration
from ovos_date_parser.duration import DurationResolution

extract_duration("wait two months", lang="en",
                 resolution=DurationResolution.RELATIVEDELTA)
# (relativedelta(months=+2), "wait")

Formatting Time

Generate a natural-sounding time format suitable for voice or display in different languages, allowing customization for speech or written text.

from ovos_date_parser import nice_time
from datetime import datetime

dt = datetime(2024, 1, 1, 15, 0)
formatted_time = nice_time(dt, lang="en", speech=True, use_24hour=False)
print(formatted_time)  # "three o'clock"

Relative Time Descriptions

Create relative phrases for describing dates and times in relation to the current moment or a reference datetime.

from ovos_date_parser import nice_relative_time
from datetime import datetime, timedelta

relative_time = nice_relative_time(datetime.now() + timedelta(days=1), datetime.now(), lang="en")
print(relative_time)  # "twenty four hours"

The generic implementation speaks the rounded difference as words, such as "two hours", "twenty four hours", or "seven days", using pronounce_number internally (it does not produce words like "tomorrow"). Basque (eu) is the only language with a dedicated nice_relative_time implementation. Everything else uses the generic one.

Format a date for speech

Beyond nice_time and nice_relative_time, the library exports a family of formatters that turn a datetime into speakable text:

def nice_date(dt, lang, now=None, include_weekday=True): ...
def nice_date_time(dt, lang, now=None, use_24hour=False, ...): ...
def nice_day(dt, lang, date_format='DMY', include_month=True): ...
def nice_weekday(dt, lang): ...
def nice_month(dt, lang, date_format='MDY'): ...
def nice_year(dt, lang, bc=False, ad=False): ...
def nice_duration(duration, lang, ...): ...
def get_date_strings(dt, lang, date_format=None, time_format="full"): ...

nice_date speaks a full date (relative to now when given, e.g. "tomorrow"); nice_date_time appends the spoken time; nice_duration speaks a timedelta/seconds value; get_date_strings returns a dict of display strings (for GUIs) rather than speakable prose. Per-language support for these is the nice_date family column in the tables above.


Read next: Colors Related: Numbers · Language Names · Quebra Frases