scraping nested xml using beautiful soup
xml = """<f transform="translate(7,7)" class="SoccerPlayer SoccerPlayer-11 Team-Away Outcome-Complete" data-id="8"> <rect x="-15" y="-15" width="30" height="30" transform="rotate(0)" class="SoccerShape"></rect> <text x="0" y="7" text-anchor="middle" transform="translate(0,0)rotate(0)">11</text> <text class="Soccer-Hidden"> <div> <h3> <span class="Soccer-Key"> Suc passes </span> <span class="Soccer-Value"> 82 </span> </h3> <p> Ronaldo </p> </div> </text> </f>""" I’m currently trying to scrape the above xml, by using soup. Specifically from bs4… Read More scraping nested xml using beautiful soup