mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 11:58:04 +00:00
31 lines
604 B
Python
31 lines
604 B
Python
class FourDigitYearConverter:
|
|
regex = "[0-9]{4}"
|
|
|
|
def to_python(self, value):
|
|
return int(value)
|
|
|
|
def to_url(self, value):
|
|
return str(value).zfill(4)
|
|
|
|
|
|
class TwoDigitMonthConverter:
|
|
regex = "[0-9]{2}"
|
|
|
|
def to_python(self, value):
|
|
return int(value)
|
|
|
|
def to_url(self, value):
|
|
return str(value).zfill(2)
|
|
|
|
|
|
class BooleanStringConverter:
|
|
"""Converter whose regex match either True or False."""
|
|
|
|
regex = r"(True)|(False)"
|
|
|
|
def to_python(self, value):
|
|
return str(value) == "True"
|
|
|
|
def to_url(self, value):
|
|
return str(value)
|