Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 313 Bytes

PythonCLI.md

File metadata and controls

11 lines (9 loc) · 313 Bytes

Python CLI

Prettify JSON and output to new file

python -m json.tool someUnformattedJson.json >> mark.json

Start a simple http server (can be accessed via browser or curl e.g. "localhost:4001/index.html" or "curl -v localhost:4001/index.html")

python -m SimpleHTTPServer 4001