Christian glacet
Christian glacet
Yes sure no problem, I don't remember if I've linked it already, but I already have a working example of [tests](https://github.com/cglacet/python/blob/master/exercises/zipper/zipper_test.py) and a [code example](https://github.com/cglacet/python/blob/master/exercises/zipper/example.py) for the python implementation of...
Hey @ErikSchierboom, I think it's an interesting exercise and would love to improve it but I don't have time for this at the moment. I hope what I did in...
A collegue also reproduced the same on a physical device (Moto G5s) with: | name | version | | ------------------------------------ | ------- | | react-native | 0.67.2 | | react-native-reanimated...
I agree that the current solution is a bit weird as it mixes admin routes with regular user routes. It would make much more sense to have the two separated...
Here is how it would look like: ```python client = Duffel(access_token="duffel_test_Utbb-kmsFGL44mi0Ixz8-jOpQzS7OmlkGuxfxX-F4rQ") client.start() # TCP handshake, once and for all offer_requests = client.offer_requests.list() async for offer_request in offer_requests: print(offer_request.id) ``` And...
Hi @nlopes, don't hesitate to tag me here in case you need help. Depending on the timing I could help you find a good solution to this.
That would also be the occasion to do two things : - Properly type your models (inherit from a base class/interface that does have the `from_json` class method). - Properly...
I'm still reading at the code, the deeper I go in the code the more I think using an external validator would be a good idea. Most of the validations...
I implemented something like this so I can use the after/before parameters: ```python from typing import Any, Generic, List, Optional, TypeVar from pydantic import BaseModel ClientT = TypeVar("ClientT", bound="HttpClient") CallerT...