--> -->
 
 
UnicodeEncodeError
Python 3.6.9: /usr/bin/python3
Fri Mar 31 21:55:16 2023

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/cryan/secure_html/daily/index.py in <module>()
    241 webpage = "".join([s for s in webpage.splitlines(True) if s.strip("\r\n")])
    242 
    243 
=>  244 print(webpage)
    245 
builtin print = <built-in function print>, webpage = '<!doctype html>\n<html lang="en">\n <head>\n <m... </div>\n </div>\n</main>\n \n </body>\n</html>\n'

UnicodeEncodeError: 'ascii' codec can't encode characters in position 43790-43792: ordinal not in range(128)
      args = ('ascii', '<!doctype html>\n<html lang="en">\n <head>\n <m... </div>\n </div>\n</main>\n \n </body>\n</html>\n', 43790, 43793, 'ordinal not in range(128)')
      encoding = 'ascii'
      end = 43793
      object = '<!doctype html>\n<html lang="en">\n <head>\n <m... </div>\n </div>\n</main>\n \n </body>\n</html>\n'
      reason = 'ordinal not in range(128)'
      start = 43790
      with_traceback = <built-in method with_traceback of UnicodeEncodeError object>