class TrigrammeConverter: regex = ".{3}" def to_python(self, value): return str(value) def to_url(self, value): return str(value)