Simon Wolfgang Funke

Results 3 issues of Simon Wolfgang Funke

Can icare find itineraries if the passengers end/start point does not exactly match with the start/end location of the itinerary? For example assume someone drives from Munich to Berlin, but...

enhancement

https://github.com/python-restx/flask-restx/blob/7ce0ef8056e66d81018e32dfe4b2dcc59dedfb83/flask_restx/api.py#L35-L40 Should be replaced with ```python from importlib.metadata import version if version("werkzeug").split(".")[0] >= "2": from werkzeug.wrappers import Response as BaseResponse else: from werkzeug.wrappers import BaseResponse ```

The Express API uses the default body_parser settings, which results in a [100kb body size limit](https://github.com/expressjs/body-parser?tab=readme-ov-file#limit). To fix, this, we would need to read the `PISTON_MAX_FILE_SIZE` value and use it...