Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have looked all around and only found solutions for python 2.6 and earlier, NOTHING on how to do this in python 3.X. (I only have access to Win7 box.)

I HAVE to be able to do this in 3.1 and preferably without external libraries. Currently, I have httplib2 installed and access to command-prompt curl (that's how I'm getting the source code for pages). Unfortunately, curl does not decode html entities, as far as I know, I couldn't find a command to decode it in the documentation.

YES, I've tried to get Beautiful Soup to work, MANY TIMES without success in 3.X. If you could provide EXPLICIT instructions on how to get it to work in python 3 in MS Windows environment, I would be very grateful.

So, to be clear, I need to turn strings like this: Suzy & John into a string like this: "Suzy & John".

share|improve this question

6 Answers

up vote 28 down vote accepted

You could use the undocumented function html.parser.HTMLParser.unescape:

In Python3:

import html.parser    
html.parser.HTMLParser().unescape('Suzy & John')
# 'Suzy & John'

html.parser.HTMLParser().unescape('"')
# '"'

In Python2:

import HTMLParser
HTMLParser.HTMLParser().unescape('Suzy & John')

PS. Although the import path and implementation has changed, the call signature has remained the same since 2001.

share|improve this answer
Awesome! However, I see that only unescapes certain characters. For example, the ampersand remains escaped. Could you explain why this is? How do I unescape these characters? – Sho Minamimoto Mar 2 '10 at 3:11
@Sho Minamimoto: I added an example. Hope it helps? – unutbu Mar 2 '10 at 3:16
Yeah, I got it, thanks! – Sho Minamimoto Mar 3 '10 at 22:05
@Sho Minamimoto: Great! :-) – unutbu Mar 3 '10 at 22:16
This does not unescape " for example. – moose Sep 12 '11 at 11:01
show 3 more comments

You can use xml.sax.saxutils.unescape for this purpose. This module is included in the Python standard library, and is portable between Python 2.x and Python 3.x.

>>> import xml.sax.saxutils as saxutils
>>> saxutils.unescape("Suzy & John")
'Suzy & John'
share|improve this answer
Seems to be incomplete, '&euml' didn't decode with this although it does with htmlparser – bcoughlan Jan 2 at 12:33

Apparently I don't have a high enough reputation to do anything but post this. unutbu's answer does not unescape quotations. The only thing that I found that did was this function

def decodeHtmlentities(string):
    import re
    entity_re = re.compile("&(#?)(\d{1,5}|\w{1,8});")

    def substitute_entity(match):
        from htmlentitydefs import name2codepoint as n2cp
        ent = match.group(2)
        if match.group(1) == "#":
            return unichr(int(ent))
        else:
            cp = n2cp.get(ent)

            if cp:
                return unichr(cp)
            else:
                return match.group()

    return entity_re.subn(substitute_entity, string)[0]

Which I got from this page.

share|improve this answer

In my case I have a html string escaped in as3 escape function. After a hour of googling haven't found anything useful so I wrote this recusrive function to serve for my needs. Here it is,

def unescape(string):
    index = string.find("%")
    if index == -1:
        return string
    else:
        #if it is escaped unicode character do different decoding
        if string[index+1:index+2] == 'u':
            replace_with = ("\\"+string[index+1:index+6]).decode('unicode_escape')
            string = string.replace(string[index:index+6],replace_with)
        else:
            replace_with = string[index+1:index+3].decode('hex')
            string = string.replace(string[index:index+3],replace_with)
        return unescape(string)

Edit-1 Added functionality to handle unicode characters.

share|improve this answer

Python 3.x has html.entities too

share|improve this answer

I am not sure if this is a built in library or not but it looks like what you need and supports 3.1.

From: http://docs.python.org/3.1/library/xml.sax.utils.html?highlight=html%20unescape

xml.sax.saxutils.unescape(data, entities={}) Unescape '&', '<', and '>' in a string of data.

Jacob

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.