Hello,
Using Python I need to transfer non utf-8 encoded data (specifically shift-jis) to a URL via the query string. How should I transfer the data? Quote it? Encode in utf-8?
Thanks
|
1
|
|||||||
|
|
|
Query string parameters are byte-based. Whilst IRI-to-URI and typed non-ASCII characters will typically use UTF-8, there is nothing forcing you to send or receive your own parameters in that encoding. So for Shift-JIS (actually typically cp932, the Windows extension of that encoding):
In Python 3 you do it in the quote function itself:
|
||
|
|
|
|
I don't know what unicode has to do with this, since the query string is a string of bytes. You can use the quoting functions in urllib to quote plain strings so that they can be passed within query strings. |
||
|
|
|
|
By the »query string« you mean HTTP GET like in You have encoding what ever data you have via |
||||||
|