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

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
+1 -1
View File
@@ -2,7 +2,7 @@
Данный класс предназначен для записи и извлечения информации из csv-файлов.
Класс CsvManager принимает три аргумента:
Класс CsvManager принимает три аргумента:
- newline — символ переноса на новую строку (по умолчанию используется пустая строка)
+2 -2
View File
@@ -84,9 +84,9 @@ p.getStaticPage(nameFile, 'https://google.com')
soup = p.returnBs4Object(nameFile)
allTegA = soup.find_all('a')
a1 = p.getTexts(allTegA, needFix=1)
textsFromA = p.getTexts(allTegA, needFix=1)
p.pprint(a1)
a2 = p.getAttributes(allTegA, 'href')
attributesFromA = p.getAttributes(allTegA, 'href')
p.pprint(a2)
```