Подравнял русскую версию сайта

This commit is contained in:
Ilia Miheev
2025-11-12 15:53:27 +03:00
parent ecd29cc149
commit bc6d5c826e
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -84,9 +84,9 @@ p.getStaticPage(nameFile, 'https://google.com')
soup = p.returnBs4Object(nameFile) soup = p.returnBs4Object(nameFile)
allTegA = soup.find_all('a') allTegA = soup.find_all('a')
a1 = p.getTexts(allTegA, needFix=1) textsFromA = p.getTexts(allTegA, needFix=1)
p.pprint(a1) p.pprint(a1)
a2 = p.getAttributes(allTegA, 'href') attributesFromA = p.getAttributes(allTegA, 'href')
p.pprint(a2) p.pprint(a2)
``` ```