Created
January 2, 2013 11:45
-
-
Save vortec/4434033 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # BeautifulSoup 3.2.0 | |
| >>> from BeautifulSoup import BeautifulSoup, CData | |
| >>> s = BeautifulSoup("<div></div>") | |
| >>> n = s.find('div') | |
| >>> n.append(CData('<b>bleh</b>')) | |
| >>> n | |
| <div><![CDATA[<b>bleh</b>]]></div> | |
| >>> | |
| ------------- | |
| # BeautifulSoup 3.2.1 | |
| >>> from BeautifulSoup import BeautifulSoup, CData | |
| >>> s = BeautifulSoup("<div></div>") | |
| >>> n = s.find('div') | |
| >>> n | |
| <div></div> | |
| >>> n.append(CData('<b>bleh</b>')) | |
| >>> n | |
| <div><![CDATA[<b>bleh</b>]]></div> | |
| >>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment