(doc_new)
| 26 | return off_link |
| 27 | |
| 28 | def rating(doc_new): |
| 29 | ratings = doc_new.find_all('div', class_='_3LWZlK') |
| 30 | all_ratings = [] |
| 31 | for i in ratings: |
| 32 | all_ratings.append(i.text.strip()) |
| 33 | return all_ratings |
| 34 | |
| 35 | def mobile_description(doc_new): |
| 36 | mobile_description = doc_new.find_all('ul', class_='_1xgFaf') |