Matt Boulanger
Matt Boulanger
@shubhamarora Sure, give it a go!
Hi, I've pushed a fix in [4.4.0](https://pypi.org/project/preston/4.4.0/). Can you see if that resolves this?
Oops, I saw this when it was first opened, but then lost track of it.
Thanks for the interest, and thanks for bringing this up! Yup, finding some way to bridge that update time to ensure data consistency definitely sounds like something I'll want to...
Hmm, I'm not sure I have anything to support paginated responses.
 The library isn't adding the query parameters, which results in always getting the first page.
I published an update that adds URL query params from the `kwargs` not used in URL variable replacement. Thus, ```python orders = preston.get_op( 'get_markets_region_id_orders', order_type = "sell", region_id = 10000067,...
Hi! I'll play around with some ideas and let you know.
Would https://github.com/Celeo/Preston/pull/32 work? ```py data = p.get_op('get_markets_region_id_orders', region_id=10000012, order_type='all', page=1) print(f'Got {len(data)} entries') print(p.stored_headers[0]) # {'Date': 'Sun, 13 Oct 2024 17:42:24 GMT', 'Content-Type': 'application/json; charset=UTF-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Access-Control-Allow-Credentials':...
I'd be pushing the latest headers to the start of that list, so [0] would be the most recent. I'm not sure if people would need more than just the...