serpapi-python icon indicating copy to clipboard operation
serpapi-python copied to clipboard

an official Python client library for SerpApi.

Results 2 serpapi-python issues
Sort by recently updated
recently updated
newest added

- resolves https://github.com/serpapi/serpapi-python/issues/12 - update the multiple pages method to be more precise

Currently, ‎`SerpResults.yield_pages` skips the first page. Because of that, it's required to duplicate the results processing in the clients' code. https://github.com/serpapi/serpapi-python/blob/44e41d36723da1e95e4ac165c08b6c98e6a95027/serpapi/models.py#L74-L78 Let's `yield current_page` before entering the pagination loop. @kennethreitz...