Flask-HAL icon indicating copy to clipboard operation
Flask-HAL copied to clipboard

Flask Extension to easily add support for REST HATEOAS via the HAL Specification: https://tools.ietf.org/html/draft-kelly-json-hal-07

Results 3 Flask-HAL issues
Sort by recently updated
recently updated
newest added

It is helpful when passing object to logger utilities. We are using this library and it saves us a lot of time. However when Document objects are passed into `logger`...

Add method to Document to add paginated link - `next` and `prev`. Something like those: ``` python doc = Document() doc.next('/page/1").prev('/page/0") ``` ``` python doc = Document(pagination=PagePagination(...)) ``` ``` python...