6 ms·
It's fine as long as you catch all exceptions, and only produce ones that you document. Your users aren't supposed to know that you used `requests` at all.
by snatchpiesinger 2y ago
It's fine as long as you catch all exceptions, and only produce ones that you document. Your users aren't supposed to know that you used `requests` at all.
- orf 2y agoSure, but who does this? And the typical pattern is to wrap exceptions, giving you access to the inner exception if you need more context. The requests HTTP exception contains the request and response object. Wrapping that would be a huge pain and a lot of code.