-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdogs.py
38 lines (26 loc) · 897 Bytes
/
dogs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import requests
from bs4 import BeautifulSoup
import string
url = 'https://www.bayerpet.com.br/caes/lista-nomes/'
for c in string.ascii_uppercase:
for p in (1, 2, 3):
url2 =c+"/"+str(p)
r = requests.get(url+url2)
print (url+url2)
bsObj = BeautifulSoup(r.text, "html.parser")
dogs = bsObj.findAll("ul", {"class":"list listNames"})
for cathoro in dogs:
print (cathoro.getText())
''' dogs = []
for c in string.ascii_uppercase:
for p in (1, 2, 3):
pg = c+'/'+str(p)
page = requests.get(url + pg)
print (url + pg)
soup = BeautifulSoup(page.content, 'html.parser')
lista = soup.find('ul', {'class':'list listNames'})
lista_dogs = lista.findAll('li')
for d in lista_dogs: dogs.append(d.string)
dogs.sort()
print (' '.join(dogs))
'''