We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
First of all thank you for making such a great library.
I am trying to play around with it using python 3.
Below is my sample code but i am not able to limit the number of searches.
import pprint import serpscrap keywords = ['Virendra Sahewag'] config = serpscrap.Config() config.set('scrape_urls', False) config.set('num_pages_for_keyword', 2) config.set('num_results_per_page', 3) scrap = serpscrap.SerpScrap() scrap.init(config=config.get(), keywords=keywords) results = scrap.run() for result in results: pprint.pprint(result)
I tried to change num_pages_for_keyword and num_results_per_page but in most of case, it is giving me 30 results always.
num_pages_for_keyword
num_results_per_page
If anyone can help me about it.
Thanks! Jayesh
The text was updated successfully, but these errors were encountered:
Anyone here can assist me?
Sorry, something went wrong.
No branches or pull requests
Hi,
First of all thank you for making such a great library.
I am trying to play around with it using python 3.
Below is my sample code but i am not able to limit the number of searches.
I tried to change
num_pages_for_keyword
andnum_results_per_page
but in most of case, it is giving me 30 results always.If anyone can help me about it.
Thanks!
Jayesh
The text was updated successfully, but these errors were encountered: