Guillaume
Guillaume

Reputation: 2918

Get results of autocompletion search

I'm using beautifulsoup to get normal results from this site: http://www.pluzz.fr, but some results are only found by autocompletion.

I wonder if it's possible to get the results of autocompletion searchs, (like google when we write a word).

Is beautifulsoup helpful in this case? Or another module?

Upvotes: 0

Views: 183

Answers (1)

Urban48
Urban48

Reputation: 1476

I assume you looking for the text value, I would suggest to use lxml.html.

Once you start typing the following html will appear:

enter image description here

and you can easily navigate with XPath or id and get the vlaues.

Upvotes: 2

Related Questions