Ich bekomme den Quellcode einer Webseite und die Codierung ist cp1252. Chrome zeigt die Seite korrekt an.Wie cp1252 dekodieren, die in Dezimal ist & # 147 statt x93?
Hier ist mein Code:
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>'
Aus der Vorschau Abschnitt können wir das
& nbsp \ sehen; = \ xc2 \ xa0
& # 167; = \ xc2 \ xa7
& # 120; = X
Für die cp1252 Codierungsstandard, ich beziehe zu http://en.wikipedia.org/wiki/Windows-1252#Code_page_layout und /Lib/encodings/cp1252.py
Wenn ich BeautifulSoup (Seite from_encoding = "cp1252") einige Zeichen sind codierte verwenden richtig, aber einige andere nicht.
Zeichen | Dezimalcodierung | cp1252-> utf-8 Codierung
"| & # 147; | \ xc2 \ x93 (falsch)
"| & # 148; | \ xc2 \ x94 (falsch)
X | & # 120; | \ xc2 \ x92 (falsch)
§ | & # 167; | \ xc2 \ xa7 (ok)
þ | & # 254;
¨ | & # 168;
'| & # 146; | \ xc2 \ x92 (falsch)
- | & # 150;
Ich benutze diesen Code zu bekommen Äquivalenz:
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()
Ausgang
’
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'
Einige Zeichen, die Copy-Paste in den Editor wie seltsam X und seltsam‘schlug fehl, also habe ich hinzugefügt etwas Code, um damit umzugehen.
Was kann ich mit dem Befehl get \ xe2 \ x80 \ x9d anstelle von \ xc2 \ x94 für "(& # 148) tun?
Mein Setup:
Windows 7
Terminal: chcp 1252 + Lucida Console Schriftart
Python 3.3
BeautifulSoup 4
Wir freuen uns auf Ihre Antworten