Even though we dont have many functions to implement the client HTTP requests we could benefit of some abstraction to not re-implement the same stuff all the time eg:
- build-url
- validate input using pydantic
- dump to json friendly python objects
- send requests
- validate responses using pydantic
- serialize json to python objects
We could reduce footprint with some sort of router.
Even though we dont have many functions to implement the client HTTP requests we could benefit of some abstraction to not re-implement the same stuff all the time eg:
We could reduce footprint with some sort of router.