Issue
I'm using scrapy
to scrape and crawl webpages.
I am interested in how to scrape this page. As you can see there are several charts. But when I look at the source code, I do not find the values of the points, even when I search in the <script>
tags.
How can I scrape each chart, with x
as hour, and y
as value of the odd?
Scrapy version: 1.5.2
Solution
Data is on your webpage. Check in script
tag variables var cote_data_1
, var cote_data_2
, etc. They should be available without JS.
Answered By - vezunchik
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.