Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 2.15 KB

python.md

File metadata and controls

44 lines (38 loc) · 2.15 KB

Notes - Python

Quick Web Server

# Python 2.x
python -m SimpleHTTPServer 8000

# Python 3.x
python -m http.server 8000

Python Resources

Testing