Omnibus commited on
Commit
069093d
·
1 Parent(s): bafb5c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ from bs4 import BeautifulSoup
4
  import re
5
 
6
  def search_fn(query,count):
7
- page = requests.get(f"https://www.google.com/search?q={query}&num={count}")
8
  soup = BeautifulSoup(page.content)
9
  #links = soup.findAll("a")
10
 
 
4
  import re
5
 
6
  def search_fn(query,count):
7
+ page = requests.get(f"https://www.google.com/search?q={query}")
8
  soup = BeautifulSoup(page.content)
9
  #links = soup.findAll("a")
10