Python Post Request Encoding
here's the situation, i'm sending POST requests and trying to fetch the response with Python problem is that it distorts non latin letters, which doesn't happen when i fetch the sa
Solution 1:
Why don't your try thepage = the_page.decode('utf-8')
instead of encode
since what you want is to move from utf-8 encoded text to unicode - coding agnostic - internal strings?
Post a Comment for "Python Post Request Encoding"