Hong-Thai Nguyen

Results 4 comments of Hong-Thai Nguyen

> Afaiu, current code limits itself to validating already split input data (line1, line2, postal_code, city_name) and formatting it. There is no address detection feature that I could see in...

Thanks @manchenkoff, we are already on latest version of prance lib: `Requirement already satisfied: prance in /usr/local/lib/python3.12/site-packages (23.6.21.0)`

Yes, but this one is still open from oct. 23: https://github.com/RonnyPfannschmidt/prance/issues/158

We can have a workaround like this: ```python class OpenAPIResolver: _resolver: prance.ResolvingParser @staticmethod def recursion_limit_handler(limit, parsed_url, recursions=()): """Ignore recursive.""" path = [] for rc in recursions: path.append("{}#/{}".format(rc[0], "/".join(rc[1]))) path =...