25ae7fe
1
2
3
4
5
6
7
8
9
10
import sys import io if sys.platform == 'win32': sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') with open("flaresolverr_output.html", "r", encoding="utf-8") as f: content = f.read(2000) print(content)