Skip to content

Instantly share code, notes, and snippets.

@laeshiny
Last active June 9, 2016 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laeshiny/e14dbd7499e2b21732b490fe1d2cf103 to your computer and use it in GitHub Desktop.
Save laeshiny/e14dbd7499e2b21732b490fe1d2cf103 to your computer and use it in GitHub Desktop.
def escape_to_xml(val):
"""Escape string to xml style
In addition, escape ", '
"""
entities = {'"': '"', '\'': '''}
val = escape(val, entities)
return val
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment