Releases: CrazyProger1/Resty-Client
Releases · CrazyProger1/Resty-Client
Resty-Client V0.0.6
v0.0.6
- Changed Manager API:
Now instantiating manager is required.
You can pass the REST Client into the constructor:
manager = UserManager(client=client)
response = await manager.read(
response_type=UserReadSchema,
)
or specify the client explicitly during calling:
manager = UserManager()
response = await manager.read(
response_type=UserReadSchema,
client=client,
)
-
Added Django pagination middlewares:
LimitOffsetPaginationMiddleware
PagePaginationMiddleware
Resty-Client V0.0.5
v0.0.5
- Improved test coverage to 100%
- Improved architecture
- Added examples
Resty-Client V0.0.4
v0.0.4
- Manager important fixes!!!!
Resty-Client V0.0.3
v0.0.3
- Refactored manager & httpx client
- Added more examples
- Added serializer tests
- Added URL injecting mechanism (allows to perform many-layer requests:
api/v1/users/123/product/321
).
See example - Added deserialize_many serializer method
RestyClient V0.0.2
v0.0.2
- Serializer many schemas support
Release 0.0.1
First release of RestyClient