Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

isclass function in python xml

for (name, member) in getmembers(ET, isclass):
    # name is the value of ET and member is the value of isclass function which we want to look in the xml directors
    if not name.startswith('_'):
        print(name)
 
PREVIOUS NEXT
Tagged: #isclass #function #python #xml
ADD COMMENT
Topic
Name
1+5 =