I want to Scan some database TextFields for Invalid Special Characters, the data from these textfields will be converted to XML and/or HTML page. Moreover, I want to Check If an XML Self-Defining Entity like &#nnnn; is Valid. What is the best way to do that in Python? Does Python has any Library that can do that out of the box?
Asked
Active
Viewed 52 times
0
-
1Welcome to SO. `Python` has ***a lot*** of decent libraries to accomplish exactly this. Please have some gooling before and come back with a specific code question afterwards. – Jan Jan 14 '18 at 21:22
-
Hint: look at standard library module `html`. – BoarGules Jan 14 '18 at 23:54