Tagged Questions

4
votes
3answers
205 views

Pyparsing - parse jascii text from mixed jascii/ascii text file?

I have a text file with mixed jascii/shift-jis and ascii text. I'm using pyparsing and am unable to tokenize such strings. Here is an example code: from pyparsing import * subrange = ...
1
vote
1answer
142 views

decoding shift-jis: “illeagal multibyte sequence”

I'm trying to decode a shift-jis string, like this: string.decode('shift-jis').encode('utf-8') to be able to view it in my program. When I come across 2 shift-jis characters, in hex "0x87 0x54" and ...
0
votes
1answer
68 views

How can I convert Shift_JIS character codes to unicode characters in python?

I have a list of Shift_JIS character codes (in integers) that I want to convert into unicode characters. I think I need a version of the chr()/unichr() function that works in other encodings. I've ...
0
votes
1answer
156 views

Error parsing emails using Python's email module when the encoding is in shift_jis

I am getting an error that says "UnicodeDecodeError: 'shift_jis' codec can't decode bytes in position 2-3: illegal multibyte sequence" when I try to use my email parser to decode a shift_jis encoded ...
0
votes
1answer
45 views

How to rewrite the SJIStoJIS function from php to python

I need convert SHIFT_JIS charset to JIS charset by python.I found a function on google codesearch. But the function is used php. I can't use python's unpack() correctly. Plz give me some help.Thank ...
0
votes
3answers
254 views

how to open a URL with non utf-8 arguments

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