in reply to Screen scraping complex tables and divs

Mojolicious provides Mojo::DOM, and it makes life much simpler if you can use css selectors. In this example I use Mojolicious to parse a page and download associated links. If you run into problems post what you've tried and an example of the HTML you have to work with.

  • Comment on Re: Screen scraping complex tables and divs

Replies are listed 'Best First'.
Re^2: Screen scraping complex tables and divs
by parser (Acolyte) on Oct 13, 2017 at 21:43 UTC
    Thank you Marto,

    I will check out mojolicious.

    Update: Mojo::DOM is perfect! It combines both CSS selectors and XML DOM parsing and has eliminated about 60% of my existing code.