what is the better way to get the information from this website with scrapy?

45 Views Asked by At

I am trying to scrape this website with scrapy and I have had to search for each link extracting the information from each one, I would like to know if there is an API of the site that I can use (I don't know how to find it).

I would also like to know how I can obtain the latitude and longitude? Currently the map is shown but I do not know how to obtain the numbers

I appreciate any suggestions

1

There are 1 best solutions below

0
On BEST ANSWER

The website may be loading the data dynamically using Javascript. Use your browser dev tools and look at the networking tab, look for any XHR calls which may be accessing an API. Then you can scrape from that directly.