Ricevo il codice sorgente di una pagina Web e la codifica è cp1252. Chrome visualizza la pagina correttamente.Come decodificare cp1252, che è in decimale e # 147 invece di x93?
Ecco il mio codice:
import sys
from urllib.request import urlopen
from bs4 import BeautifulSoup, UnicodeDammit
import re
import codecs
url = "http://www.sec.gov/Archives/edgar/data/1400810/000119312513211026/d515005d10q.htm"
page = urlopen(url).read()
print(page)
# A little preview :
# b'...Regulation S-T (§232.405 of this chapter) during the preceding 12 months (or for such shorter period that the\nregistrant was required to submit and post such files). Yes <FONT STYLE="FONT-FAMILY:WINGDINGS">x</FONT>...'
soup = BeautifulSoup(page, from_encoding="cp1252")
print(str(soup).encode('utf-8'))
# Same preview section as above
# b'...Regulation S-T (\xc2\xa7232.405 of this chapter) during the preceding 12 months (or for such shorter period that the\nregistrant was required to submit and post such files).\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0Yes\xc2\xa0\xc2\xa0<font style="FONT-FAMILY:WINGDINGS">x</font>'
Dalla sezione anteprima, possiamo vedere che
& nbsp \; = \ xc2 \ xa0
& # 167; = \ xc2 \ xa7
& # 120; = X
Per lo standard di codifica CP1252, mi riferisco a http://en.wikipedia.org/wiki/Windows-1252#Code_page_layout e /Lib/encodings/cp1252.py
Quando uso BeautifulSoup (pagina from_encoding = "CP1252") alcuni caratteri sono codificati correttamente, ma alcuni altri non lo sono.
carattere | codifica decimale | cp1252-> codifica utf-8
"| & # 147; | \ xc2 \ x93 (errato)
"| & # 148; | \ xc2 \ x94 (errato)
X | & # 120; | \ xc2 \ x92 (errato)
§ | & # 167; | \ xc2 \ xa7 (ok)
þ | & # 254;
¨ | & # 168;
'| & # 146; | \ xc2 \ x92 (errato)
- | & # 150;
Io uso questo codice per ottenere l'equivalenza:
characters = "’ “ ” X § þ ¨ ' –"
list = characters.split()
for ch in list:
print(ch)
cp1252 = ch.encode('cp1252')
print(cp1252)
decimal = cp1252[0]
special = "&#" + str(decimal)
print(special)
print(ch.encode('utf-8'))
print()
offenders = [120, 146]
for n in offenders:
toHex = hex(n)
print(toHex)
print()
#120
off = b'\x78'
print(off)
buff = off.decode('cp1252')
print(buff)
uni = buff.encode('utf-8')
print(uni)
print()
#146
off = b'\x92'
print(off)
buff = off.decode('cp1252')
print(buff)
uni = buff.encode('utf-8')
print(uni)
print()
uscita
’
b'\x92'
’
b'\xe2\x80\x99'
“
b'\x93'
“
b'\xe2\x80\x9c'
”
b'\x94'
”
b'\xe2\x80\x9d'
X
b'X'
X
b'X'
§
b'\xa7'
§
b'\xc2\xa7'
þ
b'\xfe'
þ
b'\xc3\xbe'
¨
b'\xa8'
¨
b'\xc2\xa8'
'
b"'"
'
b"'"
–
b'\x96'
–
b'\xe2\x80\x93'
0x78
0x92
b'x'
x
b'x'
b'\x92'
’
b'\xe2\x80\x99'
Alcuni caratteri fallito il copia-incolla per l'editor come strano X e strana', così ho aggiunto un codice per affrontarlo.
Cosa posso fare per ottenere \ xe2 \ x80 \ x9d invece di \ xc2 \ x94 per "(& # 148;)?
La mia configurazione:
Windows 7
Terminal: CHCP 1252 + Lucida Console caratteri
Python 3.3
BeautifulSoup 4
In attesa di vostre risposte