adpro commited on
Commit
61da87d
·
verified ·
1 Parent(s): cb2d17d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,7 +11,8 @@ def run_lora(prompt,site,start,end):
11
 
12
 
13
  # to search
14
- page = requests.get("https://www.google.com/search?q=inurl:" +site + " " +prompt + "&tbs=cdr%3A1%2Ccd_min%3A"+start+"%2Ccd_max%3A" + end)
 
15
  print("https://www.google.com/search?q=inurl:" +site + " " +prompt + "&tbs=cdr%3A1%2Ccd_min%3A"+start+"%2Ccd_max%3A" + end)
16
  soup = BeautifulSoup(page.content)
17
  features="html.parser"
 
11
 
12
 
13
  # to search
14
+
15
+ page = requests.get("https://www.google.com/search?q=inurl:" +site + "+" +prompt + "&tbs=cdr%3A1%2Ccd_min%3A"+start+"%2Ccd_max%3A" + end)
16
  print("https://www.google.com/search?q=inurl:" +site + " " +prompt + "&tbs=cdr%3A1%2Ccd_min%3A"+start+"%2Ccd_max%3A" + end)
17
  soup = BeautifulSoup(page.content)
18
  features="html.parser"