Python module to convert various time strings into datetime objects, written in Rust.
import fuzzydate as fd
fd.to_date('2023-04-01') # 2023-04-01
fd.to_date('20230401') # 2023-04-01
fd.to_date('04/01/2023') # 2023-04-01
fd.to_date('01.04.2023') # 2023-04-01
fd.to_date('1st of April, 2023') # 2023-04-01
fd.to_date('1 April 2023') # 2023-04-01
fd.to_date('Sat April 1 2023') # 2023-04-01
# Anything invalid raises a ValueError
fd.to_date('Sun April 1 2023')
# ValueError: Unable to convert "Sun April 1 2023" into datetime
import fuzzydate as fd
# If current time is April 1st 2023 12PM UTC...
fd.to_datetime('1 hour ago') # 2023-04-01 11:00:00+00:00
fd.to_datetime('last week') # 2023-03-20 12:00:00+00:00
fd.to_datetime('past 2 weeks') # 2023-03-18 12:00:00+00:00
fd.to_datetime('-1 week') # 2023-03-25 12:00:00+00:00
fd.to_datetime('tuesday next week') # 2023-04-04 00:00:00+00:00
fd.to_datetime('last week midnight') # 2023-03-20 00:00:00+00:00
fd.to_datetime('-1d 2h 5min 10s') # 2023-03-31 09:54:50+00:00
fd.to_datetime('tomorrow') # 2023-04-02 00:00:00+00:00
fd.to_datetime('prev Monday') # 2023-03-27 00:00:00+00:00
fd.to_datetime('prev June') # 2022-06-01 00:00:00+00:00
fd.to_datetime('last of the month') # 2023-04-30 00:00:00+00:00
# Anything invalid raises a ValueError
fd.to_datetime('next Summer')
# ValueError: Unable to convert "next Summer" into datetime
import fuzzydate as fd
fd.to_seconds('1h 4min') # 3840.0
fd.to_seconds('+2 days') # 172800.0
fd.to_seconds('-1 hour') # -3600.0
fd.to_seconds('1 week') # 604800.0
# Anything other than an exact length of time raises a ValueError
fd.to_seconds('last week')
# ValueError: Unable to convert "last week" into seconds
# Because years and months have varying amount of seconds, using
# them raises a ValueError
fd.to_seconds('1m 2w 30min')
# ValueError: Converting months into seconds is not supported
import fuzzydate as fd
fd.to_duration(3840.0) # 1hr 4min
fd.to_duration(3840.0, units='long') # 1 hour 4 minutes
fd.to_duration(3840.0, units='short') # 1h 4min
fd.to_duration(3840.0, max='min', min='min') # 64min
import fuzzydate as fd
fd.config.add_tokens({
'måndag': fd.token.WDAY_MON,
'dagar': fd.token.LONG_UNIT_DAY,
})
fd.config.add_patterns({
'nästa [wday]': fd.pattern.NEXT_WDAY,
})
assert fd.to_date('next Monday') == fd.to_date('nästa Måndag')
assert fd.to_date('+5 days') == fd.to_date('+5 dagar')
assert fd.to_seconds('+5 days') == fd.to_seconds('+5 dagar')
fd.config.units = {
fd.unit.DAY: 'dag',
fd.unit.DAYS: 'dagar',
}
assert fd.to_duration(86400.0) == '1 dag'
- Python >= 3.9
pip install fuzzy-date
- Date
now
,today
,tomorrow
,yesterday
- Time of day
midnight
- Adjustment
first
,last
,prev
,past
,this
,next
or+
,-
- Units
next week
,next month
,next year
- Weekdays
next Mon
,next Monday
,Monday
- Months
next Jan
,next January
,January
- Numeric
(s)ec
,min
,(h)r
,(d)ay
,(w)eek
,(m)onth
,(y)ear
- Ranges
first/last day of
,first/last Monday of
,first/last of month
- Unix timestamp
@1680307200
- Date
- Numeric
2023-04-01
,20230401
,04/01/2023
,01.04.2023
- Textual
April 1st 2023
,April 1 2023
,1 April 2023
,1. April 2023
- Combined
01-April-2023
,April-01-2023
,2023-April-01
- Numeric
- Day and month
- Textual
April 1st
,April 1
,1 April
,1. April
,1st of April
- With weekday
Sat, 1 April
,Sat, 1st of April
,Sat, April 1st
,Sat, April 1
- Textual
- Week
- Numeric
2023W13
,2023-W13
- Textual
Week 13
,Week 13, 2023
- Numeric
- Month and year
April
,April 2023
- Year
2023
- Datetime
Sat Apr 01 12:00:00 2023
,2023-04-01T12:00:00
,2023-04-01T12:00.410
- Time of day w/wo
at
,@
,14:00
,14:00:00
,14:00:00.410
,2pm
,2:00 pm
fuzzydate.to_date(
source: str,
today: datetime.date = None,
weekday_start_mon: bool = True) -> datetime.date
fuzzydate.to_datetime(
source: str,
now: datetime.datetime = None,
weekday_start_mon: bool = True) -> datetime.datetime
fuzzydate.to_duration(
seconds: float,
units: str = None,
max: str = 'w',
min: str = 's') -> str
fuzzydate.to_seconds(
source: str) -> float
# Read-only
fuzzydate.config.patterns: dict[str, str]
fuzzydate.config.tokens: dict[str, int]
# Read-write
fuzzydate.config.units: dict[str, str]
fuzzydate.config.units_long: dict[str, str]
fuzzydate.config.units_short: dict[str, str]
fuzzydate.config.add_patterns(
tokens: dict[str, str]) -> None
fuzzydate.config.add_tokens(
tokens: dict[str, int]) -> None
Benchmark is perhaps the wrong word here, as performance is (usually) less important than accuracy when it comes to parsing fuzzy date strings.
To get a sense of the accuracy for fuzzydate
, we compare it with dateparser,
the popular date parsing library for Python. Although it has a slightly different premise of extracting dates from HTML
pages — which can be much more vague — one would likely still use it for the same use cases.
- Comparing
dateparser 1.2.1
andfuzzy-date 0.5.4
- Testing 45 strings (26 fixed, 19 relative)
- No timezones included, as
fuzzydate
does not support them - 8 tests get different results, 1 only works in
dateparser
, 11 only work infuzzydate
- For identical 26 tests, mean execution time is 189% faster for
fuzzydate
See benchmark.py for implementation.
Current time is assumed to be 2024-01-25 15:22:28
test | dateparser | fuzzydate |
---|---|---|
+1 day 2 hours | 2024-01-24 13:22:28 | 2024-01-26 17:22:28 |
1705072948 | 2024-01-12 17:22:28 | |
2024-W16 | 2024-01-16 00:00:00 | 2024-04-15 00:00:00 |
7.2.2023 | 2023-07-02 00:00:00 | 2023-02-07 00:00:00 |
last week | 2024-01-18 15:22:28 | 2024-01-15 15:22:28 |
next week | 2024-02-01 15:22:28 | 2024-01-29 15:22:28 |
today | 2024-01-25 15:22:28 | 2024-01-25 00:00:00 |
tuesday | 2024-01-23 00:00:00 | 2024-01-30 00:00:00 |
yesterday | 2024-01-24 15:22:28 | 2024-01-24 00:00:00 |
Note that using a specific language or adding more settings can change the results for dateparser
.
test | dateparser | fuzzydate |
---|---|---|
20230201 | None |
2023-02-01 00:00:00 |
@1705072948 | None |
2024-01-12 15:22:28 |
Week 16 | None |
2024-04-15 00:00:00 |
Week 16, 2024 | None |
2024-04-15 00:00:00 |
first Mon of Feb | None |
2024-02-05 00:00:00 |
first day of February | None |
2024-02-01 00:00:00 |
first day of this month | None |
2024-01-01 00:00:00 |
last 2 weeks | None |
2024-01-08 15:22:28 |
last monday | None |
2024-01-22 00:00:00 |
past week | None |
2024-01-18 15:22:28 |
prev monday | None |
2024-01-22 00:00:00 |
For 26 test cases that both libraries supported, measuring the fastest run of 100 executions.
statistic | dateparser | fuzzydate | diff % |
---|---|---|---|
mean | 0.060186 | 0.001607 | 189.6 |
std | 0.012205 | 0.000117 | 196.2 |
min | 0.039103 | 0.001451 | 185.7 |
max | 0.088111 | 0.002023 | 191.0 |
It's perhaps noteworthy that native datetime.fromisoformat()
was still 197% faster than fuzzydate
, when it could
be used.
This library was born out of the need to accept various user inputs for date range start and end times, to convert user time tracking entries into exact durations etc. All very much alike to what timelib does.
Other implementations are available, but I did not find one that would have worked for me - usually they were missing support for some key wording I needed, or handled user vagueness and timezones in a different way.
Also, I kinda wanted to learn Rust via some example project as well.
MIT