Reputation: 1
I am trying to extract data from a website that uses Flourish. It uses JavaScript to load the data via Flourish link (iframe
) I believe. The data is in a script
tag.
Full Xpath" /html/body/main/div[1]/div/div/div[2]/div/script
and then iframe Full Xpath: /html/body/script[4]
The data is after
"var _Flourish_data_column_names"
and "_Flourish_data ="
I have had success using selenium, but having issues using it on my main computer. I would like to be able to use BeatuifulSoup.
Upvotes: 0
Views: 250
Reputation: 106
what's the url?
Potential Solutions: (in javascript)
Upvotes: 0