I need to scrape some website data from a table on a website and create an XML document that will be used by an app.
The table looks like this:
<table id="results" class="results"> <thead> <tr> <th scope="col" class="resRoute">Route</th> <th scope="col" class="resDir">To</th> <th scope="col" class="resDue sorted">Time</th> </tr> </thead> <tbody> <tr> <td class="resRoute">263</td> <td class="resDir">Route Name</td> <td class="resDue">1 min</td> </tr> <tr> <td class="resRoute">17</td> <td class="resDir">Route Name</td> <td class="resDue">2 min</td> </tr> </tbody> </table> And I would like to create an XML feed that looks like this:
<train> <route>263</route> <direction>Route Name</direction> <due>2 Min</due> </train> <train> <route>17</route> <direction>Route Name</direction> <due>12 Min</due> </train>