Hello I'm trying to run this tutorial but in Python 3 so I have this ValueError (too many values to unpack (expected 3)) in this line that is marked in blue in the picture or as you can see below:
def parse_request(self, text):
request_line = text.splitlines()[0]
request_line = request_line.rstrip('\r\n')
# Break down the request line into components
(self.request_method, # GET
self.path, # /hello
self.request_version # HTTP/1.1
) = request_line.split()

I don't know what I'm doing wrong. Can someone please help me? The code is okay in the prompt but when I open the localhost:8888/hello in Google Chrome it gives me back this error in the Anaconda Prompt. I'm using Sublime Text to run it. I tried to do it using Jupyter, but there it gave me another error. I don't know what to do. Thank you for your response.