Skip to content Skip to sidebar Skip to footer

Scrape Dynamic Data Using Scrapy

I would like to scrape option chain of stock from nasdaq website using scrapy (along with other data) Nasdaq recently updated their website. Here is the url I am talking about. The

Solution 1:

For that task you don't need selenium or splash. Instead you can inspect the network tab in chrome developer tools.

The site makes additional request to get data from the following endpoint: https://api.nasdaq.com/api/quote/MSFT/option-chain?assetclass=stocks&limit=0

Cheers

Post a Comment for "Scrape Dynamic Data Using Scrapy"