rspivak / lsbaws

Let's Build A Web Server
MIT License
657 stars 304 forks source link

if you have this problem"TypeError: a bytes-like object is required, not 'str'" #11

Open HavendGithub opened 5 years ago

HavendGithub commented 5 years ago

Problem: TypeError: a bytes-like object is required, not 'str'

Solve

http_response = b"""\
HTTP/1.1 200 OK

Hello, World!
"""
zhwindy commented 5 years ago

python2 -> "Hello world" python3 -> b"Hello world"