edsnlp.pipelines.misc.dates.parsing
month2int = time2int_factory(months.letter_months_dict)
module-attribute
day2int = time2int_factory(days.letter_days_dict)
module-attribute
str2int(time)
Converts a string to an integer. Returns None
if the string cannot be converted.
PARAMETER | DESCRIPTION |
---|---|
time |
String representation
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
Integer conversion. |
Source code in edsnlp/pipelines/misc/dates/parsing.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
time2int_factory(patterns)
Factory for a time2int
conversion function.
PARAMETER | DESCRIPTION |
---|---|
patterns |
Dictionary of conversion/pattern.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Callable[[str], int]
|
String to integer function. |
Source code in edsnlp/pipelines/misc/dates/parsing.py
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 58 59 60 61 62 63 64 65 66 67 68 69 |
|