как из этого b“<_io.TextIOWrapper name='PAGE2.html' mode='w' encoding='cp1252'>”
вывести ТОЛЬКО имя страницы (name = )
с помощью Regular expression lib
?
import re st = "<_io.TextIOWrapper name='PAGE2.html' mode='w' encoding='cp1252'>" print(re.search(r"(?<=name=)(')\w\S+(')", st).group())