You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm moving a largish codebase over from requests to httpx, and having to wrap my URLs in str(url) in many places is painful, and I'm not sure it should be necessary.
(I used to use furl rather than yarl- the same issue exists with that.)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I like to use yarl for storing and manipulating URLs. The
requests
library used to let me use these directly, buthttpx
does not:I'm moving a largish codebase over from
requests
tohttpx
, and having to wrap my URLs instr(url)
in many places is painful, and I'm not sure it should be necessary.(I used to use furl rather than
yarl
- the same issue exists with that.)Beta Was this translation helpful? Give feedback.
All reactions