P. Raj Kumar
P. Raj Kumar
On [gitter](https://gitter.im/python-uplink/Lobby?at=5d5c135bbeba830fffcec40f), @asmodehn shared their questions/concerns regarding how `uplink` manages I/O and pointed us towards the [sans I/O](https://sans-io.readthedocs.io/) approach. In [my response](https://gitter.im/python-uplink/Lobby?at=5d5c135bbeba830fffcec40f), I noted that we currently do abstract a...
**Is your feature request related to a problem? Please describe.** This FR is from @liiight on [gitter](https://gitter.im/python-uplink/Lobby?at=5ce9f9860ac9852a953fcb9d): > So i was trying to add metrics to get a good sense...
Add a way to override the execution order of certain class-level and method-level response handlers
**Is your feature request related to a problem? Please describe.** Here's the original question raised by @liiight on [gitter](https://gitter.im/python-uplink/Lobby?at=5beddea66b9822140d36ce8f): > so i have a class response handler to handle request...
**Is your feature request related to a problem? Please describe.** This feature requests is spun out from a discussion on [gitter](https://gitter.im/python-uplink/Lobby?at=5c7ac5db0966d9120410221c): > Hi. Is there a best practice for making...
**Is your feature request related to a problem? Please describe.** @liiight recently encountered a problem that may indicate that the current defaults for the `@retry` decorator are not sensible. Below...
**Is your feature request related to a problem? Please describe.** @liiight recently [encountered a problem](https://gitter.im/python-uplink/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) caused by Uplink that could have been diagnosed quicker if the library had reasonable DEBUG...
**Is your feature request related to a problem? Please describe.** This issue relates to a question by @liiight on [Gitter](https://gitter.im/python-uplink/Lobby?at=5cb634ad8790b0307eb0f093): > hey @prkumar, is it possible to pass the consumer...
**Is your feature request related to a problem? Please describe.** It would be nice if I could set the entire `session.headers` and not just update individual keys. **Describe the solution...
**Is your feature request related to a problem? Please describe.** [`glom`](https://glom.readthedocs.io/en/latest/) is a library that provides a lot of neat functionality in terms of parsing nested structures, like JSON objects....
Dynamic HTTP Header fields are declared using the `uplink.Header` annotation: ```python @get("/user") def get_user(self, authorization: Header): """Get an authenticated user.""" ``` Adding support for string formatting could simplify the method's...