I'm trying to use Python to scrape the data from the table on this web page.
http://www.dividendyieldhunter.com/exchanged-traded-debt-issues-sorted-alphabetically/
I tried using requests and bs4. I get the raw HTML but it looks like the data is hidden. What should I be trying ?
That particular page is loading the data from a URL in an iFrame in this code:
You would need to further request the HTML from the URL in the src attribute at:
Then you could scrape the table with the class="waffle".
NOTE: Take care with the URL query parameters that come from the raw URL as in the example below.
For example the
&
near the end must be converted to a single & character for the requests module to find the proper URL, e.g.