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
So either the user would have to convert the kv pairs to string before parsing, or use bytes when looking up values in the dictionary. Is there anythign that handles this natively?
The text was updated successfully, but these errors were encountered:
Not presently… Klein is very bytes-centric at the moment.
What I think I'd like to see is a deprecation of request.args, and the addition of a request.url which is a Hyperlink URL, and so can access the args through that object instead.
With Python3, the keys and values for
request.args
returned when submitting form data to anapp.route
are returned as bytes, not strings.So either the user would have to convert the kv pairs to string before parsing, or use bytes when looking up values in the dictionary. Is there anythign that handles this natively?
The text was updated successfully, but these errors were encountered: