Aprenent Python Recorrent el camí pas a pas

48 Server

Podem alçar un servidor així:

Python 2.7

python -m SimpleHTTPServer [port]

Python 3

python3 -m http.server [port]

Exemple:

python3 -m http.server 80

Caldria accedir així:

127.0.0.1:80

Font: Pythones.net