DEV Community

Cover image for Write your own web server in python.
Shaila B
Shaila B

Posted on

Write your own web server in python.

In python, there are libraries that allow you to write your own web server in a few lines.

For Example:

img

When you run this, your machine will listen on port 8000 for requests.

In a web browser, If you navigate to http://127.0.0.1:8000/

The browser will get the response as below

Alt Text

Top comments (0)