DEV Community

Clavin June
Clavin June

Posted on • Originally published at clavinjune.dev on

Simple HTTP Server Using Python

Sunday Snippet #1 simple HTTP server using python

Opening simple HTTP server using python

# python3 -m http.server <port> $ python3 -m http.server 8080 Serving HTTP on :: port 8080 (http://[::]:8080/) ... 
Enter fullscreen mode Exit fullscreen mode

Top comments (0)