Analysing SERPs on Large Sclae #126
-
How do I get search results for the top 50 pages by using advertools python code Could you please help me |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can use the serp_ranks = adv.serp_goog(cx=cx, key=key, q=queries,gl=['om'], start=[1, 11, 21, 31, 41]) This would run the same queries once for each Note: your key was edited to protect its privacy. Watch out not to publish it anywhere, and it's better to deactivate it and create a new one. |
Beta Was this translation helpful? Give feedback.
You can use the
start
parameter multiple times like this:This would run the same queries once for each
start
position, ending up with the top 50 results.Note: your key was edited to protect its privacy. Watch out not to publish it anywhere, and it's better to deactivate it and create a new one.