I need to copy thousands of 'mini tables' into a CSV. Essentially every 'mini table' should actually be a single row in an CSV table. The issue is, the code from the website looks like this:
<li class="searchResult"> <div> <strong> <a href="www.link.com/">Junior Sales Rep</a> </strong>
</div> <div class="tableTable"> <div class="tableRow"> <div class="tableCell"> Date of notification: 2022-09-23 <br> End date of waiting period: 2022-09-28 <br> Company Name <br> Toronto (Ontario)
</div> <div class="tableCell"> PB-78 <br> Selection process: <span>22-563-ZB-B7S/span> </div>
</div> </div> <div> <br><strong> Name of person being considered: </strong> Samuel Adams </div> <hr class="searchJobHrLine"> </li>
Just from your expertise, is this something that requires custom extensive code to scrape and convert to CSV, or is there a premade way of doing this? I was considering using Beautiful Soup, but before I proceeded I would want a smart person's guidance on the direction I should take, or if this is a lost cause?