start a simple http server python3
python3 -m http.server 8000
                                
                            start a simple http server python3
python3 -m http.server 8000
                                
                            python start simplehttpserver
# If Python version is 3.X
python3 -m http.server
# If Python version is 2.X
python -m SimpleHTTPServer
                                
                            create a server in python
# Python 3 server example
from http.server 
import BaseHTTPRequestHandler, HTTPServer
import time
hostName = "localhost"
serverPort = 8080
class MyServer(BaseHTTPRequestHandler): 
	def do_GET(self):
    	self.send_response(200)
        self.send_header("Content-type", "text/html")
        self.end_headers()
        self.wfile.write(bytes("<html><head><title>https://pythonbasics.org</title></head>", "utf-8"))
        self.wfile.write(bytes("<p>Request: %s</p>" % self.path, "utf-8"))
        self.wfile.write(bytes("<body>", "utf-8"))
        self.wfile.write(bytes("<p>This is an example web server.</p>", "utf-8"))
        self.wfile.write(bytes("</body></html>", "utf-8"))
    if __name__ == "__main__":
    	webServer = HTTPServer((hostName, serverPort), MyServer)
        print("Server started http://%s:%s" % (hostName, serverPort))
        try:
        webServer.serve_forever()
        except KeyboardInterrupt:
        pass
        webServer.server_close()
        print("Server stopped.")
                                
                            python localhost
# If Python version returned above is 3.X
python3 -m http.server
# On windows try "python" instead of "python3", or "py -3"
# If Python version returned above is 2.X
python -m SimpleHTTPServer
                                
                            python local server command
On Ubuntu go to Commands and hit these two commands->
cd folderName
python3 -m http.server 8080
                                
                            Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us