python Python模块urllib:readlines函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python模块urllib:readlines函数相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3

import sys
from urllib.request import urlopen

try:
    url = str(sys.argv[1])  # arg: URL string
except (IndexError, ValueError):
    print('Please include a URL')
    sys.exit(2)

response = urlopen(url)

for line in response:
    print(line.decode('utf-8'))

'''
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">

<head>

'''

以上是关于python Python模块urllib:readlines函数的主要内容,如果未能解决你的问题,请参考以下文章

Python爬虫--Urllib库

Python技能树共建python urllib 模块

Python的urllib和urllib2模块

Urllib 模块

Python3的urllib模块的变化和介绍

[Python3]HTTP处理 - urllib模块