📜  python 从网络下载 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:01.431000             🧑  作者: Mango

代码示例2
import urllib2  # the lib that handles the url stuff

data = urllib2.urlopen(target_url) # it's a file like object and works just like a file
for line in data: # files are iterable
    print line