Skip to content

Commit d865add

Browse files
author
NagarajSundaramahalingam
committed
Removed print in get_response
Removed print in get_response. Because it prints url for every request
1 parent 116b10a commit d865add

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

serpapi/serp_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_response(self, path = '/search'):
5555
url = None
5656
try:
5757
url, parameter = self.construct_url(path)
58-
print(url)
58+
# print(url)
5959
response = requests.get(url, parameter, timeout=self.timeout)
6060
return response
6161
except requests.HTTPError as e:

0 commit comments

Comments
 (0)