Created
January 31, 2018 16:54
-
-
Save jobelenus/72596748e456ab999415e71ada6e9abb 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
xml = """<?xml version="1.0" encoding="US-ASCII" standalone="yes"?> | |
<?adf version="1.0"?> | |
<adf> | |
<prospect status="new"> | |
... | |
</prospect> | |
</adf> | |
""" | |
from bs4 import BeautifulSoup | |
doc = BeautifulSoup(xml, "xml") | |
# doc.adf.prospect is null | |
xml = """ | |
<?xml version="1.0" encoding="US-ASCII" standalone="yes"?> | |
<?adf version="1.0"?> | |
<adf> | |
<prospect status="new"> | |
... | |
</prospect> | |
</adf> | |
""" | |
from bs4 import BeautifulSoup | |
doc = BeautifulSoup(xml, "xml") | |
# doc.adf.prospect is not null! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment