
Searching in Google with Python - Stack Overflow
Jul 28, 2016 · I want to search a text in Google using a python script and return the name, description and URL for each result. I'm currently using this code: from google import search ip=raw_input("What …
Programmatically searching google in Python using custom search
May 7, 2016 · I have a snippet of code using the pygoogle python module that allows me to programmatically search for some term in google succintly: g = pygoogle (search_term) g.pages = 1 …
google search with python requests library - Stack Overflow
Mar 25, 2014 · You can use the Google API without client library. I'm using Google Drive in Python 3 with urllib.request module.
Scraping and parsing Google search results using Python
Oct 13, 2011 · The new question are: in Python, to scrape Google search results for a given keyword, in this case "About", and finally get the links for further parsing. What are the best choices of methods …
How to find Google Search results via a python package
Mar 9, 2017 · I am currently trying to get a list of Google Search results via Python. Many different package have stopped working or have been deprecated when google changed the html layout …
How to use BeautifulSoup to parse google search results in Python
I am trying to parse the first page of google search results. Specifically, the Title and the small Summary that is provided. Here is what I have so far: from urllib.request import urlretrieve imp...
python - How can I use web search with Gemini models in the google ...
Jun 11, 2025 · I'm trying to utilize the google-generativeai Python package to call various Gemini models and also equip them with web search functionality. I can do something similar with OpenAI models …
Google Search Web Scraping with Python - Stack Overflow
I've been learning a lot of python lately to work on some projects at work. Currently I need to do some web scraping with google search results. I found several sites that demonstrated how to use...
proxy - googlesearch library for python - Stack Overflow
After successive search requests, Google would suspect the access for a bot and acquire Captcha verification. The library googlesearch implemented the auto-switching of proxies to pass over that …
python - google search using playwright - Stack Overflow
Aug 26, 2024 · I am trying to perform google search using playwright. But getting this error: playwright._impl._errors.TimeoutError: Page.fill: Timeout 60000ms exceeded. Call log: waiting for …