Search Results

1
vote

Convert XML/HTML Entities into Unicode String in Python

Use the builtin unichr -- BeautifulSoup isn't necessary: >>> entity = '&#x01ce' >>> unichr(int(entity[3:],16)) u'\u01ce' …
2
votes

What emails clients are being used out there?

Raw market share figures will not help you much. When designing HTML email, the only thing that matters is what client your particular target population uses. This depends on geographical area, ind …