Hello. I’m trying to fetch data from an api that ask to retype the parameter name for each value, for example:
*/?dest=in&dest=out&dest=form/
I tried to pass a list (params = {“dest”: [“in”, “out”]}) as the value but it’ll only chooses the last value when making the fetch.
if I’m printing from the read_records() function, inside http.py.
I can see that indeed the request.url has all the parameters, but the final request apparently doesn’t
are there any workaround?
Thank you!!!