This commit is contained in:
Chahrazad650
2026-01-28 18:17:02 +01:00
parent 993246f485
commit b744309d6a

View File

@@ -5,3 +5,8 @@ def getsoup(s: str) -> BeautifulSoup:
return BeautifulSoup(rq.get(s).text, 'html.parser')
soup = getsoup("https://www.millesima.fr/")
def nimportequoi() :
links = soup.find_all('a')
for link in links:
print(link.get('href'))