Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def run_lora(prompt,site,start,end):
|
|
21 |
soup = BeautifulSoup(page.text, 'html.parser')
|
22 |
search_results = []
|
23 |
#MjjYud
|
24 |
-
for g in soup.find_all('div', class_='
|
25 |
print(g)
|
26 |
title = g.find('h3').text if g.find('h3') else 'No title'
|
27 |
link = g.find('a')['href']
|
|
|
21 |
soup = BeautifulSoup(page.text, 'html.parser')
|
22 |
search_results = []
|
23 |
#MjjYud
|
24 |
+
for g in soup.find_all('div', class_='MjjYud'):
|
25 |
print(g)
|
26 |
title = g.find('h3').text if g.find('h3') else 'No title'
|
27 |
link = g.find('a')['href']
|