예제 #1
0
파일: Util.py 프로젝트: c050226113/pack
 def translate_html_special_characters(string):
     html_parser = HTMLParser()
     print(dir(html_parser))
     data = '<br>'
     print(html_parser.feed(data))
     print(data)
     return html_parser.parse(string)