stchris / untangle

Converts XML to Python objects
MIT License
613 stars 83 forks source link

cdata is an XML concept and hence should not be used in the API to refer "text" section of a tag #30

Open sandeepsinghal opened 7 years ago

sandeepsinghal commented 7 years ago

from the example :

instead of "title = item.title.cdata"

it will be more consistent with other libraries if it is called

title = item.title.text

stchris commented 7 years ago

Considering this for 2.0.0 since it is breaking the API.