ilyazub

Results 80 comments of ilyazub

> Let's structure the output similarly to our other APIs. > > ```json > { > "reviews_results": { > "rating": [ > { > "stars": 1, > "count": 87 >...

Thanks for your question, @john-h-k. The runtime log is updated automatically. The default path is `./tmp/turbo_rspec_runtime.log`. The `--runtime-log FILE` option provides a way to change the log file path. Introduced...

Thanks! Can confirm it's a bug. ``` $ bundle exec turbo_tests --runtime-log tmp/some_log.log ./spec/lib/ # Omitted... $ ls tmp/some_log.log ls: cannot access 'tmp/some_log.log': No such file or directory ```

It's possible to tweak the timeout by using the [`SerpApiClient`](https://github.com/serpapi/google-search-results-python/blob/6a825ea8f6201772f5ec911edbdf49d01493f1d5/serpapi/serp_api_client.py#L35). [_Example project in web-IDE_](https://replit.com/@ilyazub/scrape-google-maps-python-serpapi#main.py). ```python params = { "engine": "google_maps", "q": q, "type": "search", "ll": "@40.7455096,-74.0083012,14z", "api_key": os.getenv("SERPAPI_KEY"), } #...

It's in seconds, according to [requests source code](https://github.com/psf/requests/blob/7f694b79e114c06fac5ec06019cada5a61e5570f/requests/adapters.py#L499) and [urllib code documentation](https://github.com/python/cpython/blob/acfe02f3b05436658d92add6b168538b30f357f0/Lib/urllib/request.py#L149-L152). (_I've updated the code sample above to reflect that timeout is in seconds._)

https://github.com/hwchase17/langchain/pull/609 allows to pass more parameters to SerpApi.

Looks like it's possible to extract the full price in addition to the monthly price. The data is in the HTML too ![image](https://github.com/serpapi/public-roadmap/assets/282605/3573596c-33fb-4bc4-9567-8fd4af4fcf77)

The rough plan is: 1. Open the X-Ray endpoint in the headless browser. 2. Get [client rectangles](https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect) of container elements: x and y coordinates of top-left position, width, and height....

Reverse image search results are obtained through the `/images/api/custom/knowledge` API endpoint. ### Related content tab #### Bash script ```bash curl 'https://www.bing.com/images/api/custom/knowledge?q=&rshighlight=true&textDecorations=true&internalFeatures=share&FORM=SBIHMP&skey=aeCUosWoYCPQ7_1wAr_HO_O746BHv_fxH8UAUBIvp1k&safeSearch=Moderate&mkt=en-ww&setLang=en-us&IG=0EE09CCA53BE4ACAA95BD9B092C45CF3&IID=idpins&SFX=1' \ -s \ -H 'authority: www.bing.com' \ -H 'accept:...

@andypple83 Glad it helps! > I can not find the JSON containing the `Related content` - Images. Here's my process: 1. `Ctrl+F` in the Network tab of browser dev tools....