Is there a library to extract info from an html using jquery like interface similar to pyquery?

I need to scrape a page and select info from there

It doesn’t have a jquery-esque interface like pyquery, but Meeseeks will allow you to select info from HTML with CSS or XPath selectors and extract particular information from the results like text or tag or HTML.

Meeseeks also allows you to define custom selectors so if pyquery allows you to do something CSS or XPath won’t, you could add that functionality.

1 Like

It is possible to retrieve an HTML-document using HTTPotion or HTTPoison, and you can then extract specific snippets from it using Floki/Friendly or Meeseeks.

Alternatively, you can go the full browser-automation way and use Hound.

Cool I’ll try that