Update Self_Improving_Search.py for windows

This commit is contained in:
Hafeez 2024-11-20 21:46:03 +05:30 committed by GitHub
parent a53d85e284
commit aa73019d70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,6 +35,7 @@ for name in ['root', 'duckduckgo_search', 'requests', 'urllib3']:
logging.getLogger(name).propagate = False logging.getLogger(name).propagate = False
class OutputRedirector: class OutputRedirector:
"""Windows-compatible output redirection"""
def __init__(self, stream=None): def __init__(self, stream=None):
self.stream = stream or StringIO() self.stream = stream or StringIO()
self.original_stdout = sys.stdout self.original_stdout = sys.stdout