Skip to content
Advertisement

How to use BeautifulSoup for td tags without attributes?

I am trying to extract this immigration data from Canada immigration website

I tried extracting the whole table, individual td tags, all returns empty list.

JavaScript

I also tried finding tr tags in a table;

JavaScript

Also tried , but doesnt work:

JavaScript

What am I missing, and how can I extract the table data?

Another doubt I have is how I can access the Program name and values just enclosed in td tags with no attributes. Each line in the table is a tr tag with a bunch of td tags in them :

JavaScript

Advertisement

Answer

That table is being loaded dynamically in page. You can inspect the Network Tab in Dev Tools, and see which API is being accessed to pull the data from. This is one way of obtaining the data in that table:

JavaScript

This will return a dataframe:

JavaScript
Advertisement