Answers for "beautifulsoup get value of attribute"

0

beautifulsoup find get value

input_tag = soup.find(id="id")
output = input_tag['value']
Posted by: Guest on March-01-2021
-1

python beautifulsoup get attibute

xmlData = None

with open('conf//test1.xml', 'r') as xmlFile:
    xmlData = xmlFile.read()

xmlDecoded = xmlData

xmlSoup = BeautifulSoup(xmlData, 'html.parser')

repElemList = xmlSoup.find_all('repeatingelement')

for repElem in repElemList:
    print("Processing repElem...")
    repElemID = repElem.get('id')
    repElemName = repElem.get('name')

    print("Attribute id = %s" % repElemID)
    print("Attribute name = %s" % repElemName)
Posted by: Guest on April-11-2020

Code answers related to "beautifulsoup get value of attribute"

Browse Popular Code Answers by Language