Answers for "how to make localhost with python"

3

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
Posted by: Guest on October-28-2020
4

web server python

# Creating a Web server using Python and Flask

from flask import Flask

app = Flask('app')
@app.route('/')

def run():
    return '<h1>Hello, Server!</h1>'

app.run(host = '0.0.0.0', port = 8080)
Posted by: Guest on November-12-2020
0

localhost server in Python

python -m SimpleHTTPServer 12345
Posted by: Guest on June-10-2021

Code answers related to "how to make localhost with python"

Python Answers by Framework

Browse Popular Code Answers by Language