class CountryConverter:
    regex = "[A-Z]{2}"

    def to_python(self, value):
        return str(value)