We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Used 8000 localhost.
Vagrant is up and running.
CLI:
And yet webserver.py is not working. Please help. Am I missing here something?
The text was updated successfully, but these errors were encountered:
In do_GET method inside wfile.write you have to do message.encode() because it needs to be in bytes.
output += "<html><body>Hello World!</body></html>" self.wfile.write(output.encode())
output += "<html><body>Hello World!</body></html>"
self.wfile.write(output.encode())
Sorry, something went wrong.
Aslo close the vagrant machine and try.. it will work.
No branches or pull requests
Used 8000 localhost.
Vagrant is up and running.
CLI:
And yet webserver.py is not working.
Please help. Am I missing here something?
The text was updated successfully, but these errors were encountered: