Skip to content
Advertisement

Extract single data point from multiple, webscraping

I am trying to extract stock symbols (3rd column) from the table in below screener:

https://chartink.com/screener/2-short-trend and pass them on to a dataframe.

Due to my limited knowledge, I have hit a wall and can not move past it.

My code is:

JavaScript

Output:

JavaScript

I just need stock symbols: M&M, APOLLOTYRE etc., and passed into a dataframe.

Can someone pls guide.

Advertisement

Answer

Bit of a quick fix, but you could use a counter assuming that the relevant output is the second result for every company. Something like the below:

JavaScript

I structured i to trigger appending the result to a symbols list at the position where the symbol is iterated over and then a dataframe is created using the output. Using that code gave me a dataframe with the 5 symbols from your link.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement