How to scrape different datacenters from Google ?

Toublick

Newbie
Joined
Jul 12, 2020
Messages
13
Reaction score
4
Hello,
I have a Python script that scrape Google in order to know what are my positions for different keywords.
I don't want to use a tool that already exist, I need to improve my script.
I would like to check 4 or 5 different Google's datacenters for each keywords I follow.
But I really don't know how could I do that.
If I use an IP from the list with my headful browser, for example : http://142.250.179.99/search?q=lawyer , I'm redirected to https://www.google.com/search?q=lawyer
Could someone know if I simply need to scrape go to this URL 142.250.179.99/search?q=lawyer to know my position in the datacenter 142.250.179.99 ?
Or I need to do something else ?
Thank you very much for your help guys
Have a nice day
 
Hey Tazarbm,
When I speak about Google's datacenters, I'm reffering about different IP of Google.
For example : http://142.250.179.99/search?q=lawyer
 
I'm not sure scraping different datacenters is actually still a thing, due to improvements in Google's technology over the past decade. It's more about scraping from different locales as @tazarbm alluded to, which is achieved using country-specific proxies, language http headers etc when scraping.
 
Back
Top