Quantcast
Channel: Hone Watson Bookmarks » App Engine
Viewing all articles
Browse latest Browse all 8

Xml, Html Special Characters Tidy Python App Engine

$
0
0

You can’t use ‘tidy’ python binding with App Engine as far as I know so use this for cleaning up your xml and html characters:


import cgi
string = str('I hate monkey & hyena characters')
cgi.escape(string)

Should print out:

I hate monkey & hyena characters



Viewing all articles
Browse latest Browse all 8

Trending Articles