Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
google search by Python
#1
Hello Python Pros,
I am trying to use the Python to do the google search with the duration of 1 week, but it shows the error message as below.
Pls help me to correct my scripts or give me some web sites for the guidance, thank you.

TypeError: search() got an unexpected keyword argument 'as_qdr'

# -*- coding: cp950 -*-
try:
from google import search
except ImportError:
print("No module named 'google' found")

# to search
query = "A computer science portal"

for j in search(query, tld="co.in", num=10, as_qdr="w", stop=1, pause=2):
print(j)
Reply
#2
Please use python tags. See the BBCode link in my signature for instructions.

Looking at the documentation, there is no as_qdr parameter for that function. What are you expecting it to do?
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#3
Hello Ichabod,
Thank you very much for the reply.
If I would like to execute the good search with a specified date or duration, how should I do the code?

Thank you.
Reply
#4
I don't really see those options in the google package. It seems to be a very stripped down search function. If those are things that you can put into the google search, like 'site:www.python-forums.io', you could just put it into the query string. Beyond that I'm not sure how to do it.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  New on python. Needs help with Google sheet jeromep 1 155 Apr-25-2024, 06:47 PM
Last Post: deanhystad
  (Python) Pulling data from UA Google Analytics with more than 100k rows into csv. Stockers 0 1,242 Dec-19-2022, 11:11 PM
Last Post: Stockers
  Deploy Python to Cloud and save output to Google Drive chandrabr80 2 1,592 Jan-25-2022, 06:56 AM
Last Post: ndc85430
  install apache-airflow[postgres,google] on Python 3.8.12 virtual env ShahajaK 1 7,864 Oct-07-2021, 03:05 PM
Last Post: Larz60+
  how to import files in Google Collab wihout downloading them to PC and to Google Disk sveto4ka 9 3,942 Jun-03-2020, 12:40 PM
Last Post: sveto4ka
  PYTHON - GOOGLE... create new spreadsheet? danclark81 3 2,708 Feb-02-2020, 08:57 PM
Last Post: danclark81
  Google API OAuth v2 Python oneclick 0 2,085 Sep-09-2019, 05:02 AM
Last Post: oneclick
  How do I install apps from google play store? using python + selenium.. mongo 0 2,289 Aug-05-2019, 12:41 AM
Last Post: mongo
  Linking python to Google Sheets Charliefish1311 1 2,298 Jul-09-2019, 12:31 AM
Last Post: micseydel
  Upload files to Google/Azure/AWS or cloud drives using python tej7gandhi 0 1,924 May-11-2019, 03:02 PM
Last Post: tej7gandhi

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020