2
votes
How to strip the 8th bit in a KOI8-R encoded character?
Assuming s is a KOI8-R encoded string you could try this:
>>> s = u'Код Обмена Информацией, 8 бит'.encode('koi8-r')
>>> s
>>> '\xeb\xcf\xc4 \xef\xc2\xcd\x …
0
votes
KOI8-R: Having trouble translating a string
Looking at the error messages that you are seeing, it seems to me that your terminal encoding is probably set to KOI8-R, in which case you don't need to perform any decoding on the input data. If t …
0
votes
Unicode problem Django-Python-URLLIB-MySQL
autoweek.com seems confused about it's own encoding. It declares conflicting charset definitions:
<meta http-equiv="Content-Type" …
0
votes
convert the key in MIME encoded form in python
For a start, when you do use a valid search value ("jay" returns an error stating "too many values"), you will receive an HTML page from which you need to extract the actual key. Tryin …
0
votes
How to encrypt using public key?
There is an error somewhere in the public key. It appears to be a PGP public key but with different line lengths, so it can't be used directly as an RSA public key.
…
