python 命令行带参数执行方式

Python在命令行带参数的执行方式

  1. -m:将标准库中的模块作为脚本去执行
    在python2.x中启动一个CGI web 服务器
python -m CGIHTTPServer [port]

启动一个web服务,使用浏览器查看pydoc文档

python -m pydoc -p8080

局域网内文件传输,在python2.x中,可以启动一个服务器,同局域网内的其他机器可以通过浏览器访问相应目录下的文件;

python -m SimpleHTTPServer

格式化json 数据

curl localhost:8080 | python -m json.tool
  1. -c选项可以执行由Python语句组成的字符串

在python 3.x中启动一个web服务器

python -c 'from http.server import SimpleHTTPRequestHandler, test; test(SimpleHTTPRequestHandler)'

你可能感兴趣的:(python-学习之路)