Python标准库是随Python附带安装的,它包含大量极其有用的模块.熟悉Python标准库是十分重要的,因为如果你熟悉这些库中的模块,那么你的大多数问题都可以简单快捷地使用它们来解决. sys模块包含系统对应的功能 1.使用sys.argv #!/usr/bin/python # Filename: cat.py import sys def readfile(filename): '''Print a file to the standard output.''' f = file(fil…
背景 Requests is an elegant and simple HTTP library for Python, built for human beings. Requests是一个优雅简洁的Python HTTP库,给人类使用. Requests使用urllib3,所以拥有它的所有特性. 支持python 2.6 – 3.5 . 不得不说,超级喜欢他们家的文档啊,很pythonic. Requests: 让 HTTP 服务人类 快速上手 开发接口 Requests github 安…