pewee.md
· 270 B · Markdown
Исходник
## One Liner Web Server Python3
For a Python 3 web server, from the directory containing your files, run:
```bash
python3 -m http.server 8000
```
Serves up the files in the directory you start it in.
Then open your browser and go to:
```
http://localhost:8000
```
One Liner Web Server Python3
For a Python 3 web server, from the directory containing your files, run:
python3 -m http.server 8000
Serves up the files in the directory you start it in.
Then open your browser and go to:
http://localhost:8000