python urllib Python模块:按年和月分列的ARIN PPML档案

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python urllib Python模块:按年和月分列的ARIN PPML档案相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python3
# python3 arin_ppml.py 2016 December | less

import sys, urllib.request

try:
    year_numbr = int(sys.argv[1])  # arg1
    month_name = str(sys.argv[2])  # arg2
except (IndexError, ValueError):
    print('Please enter year number and month name')
    sys.exit(2)

template = 'http://lists.arin.net/pipermail/arin-ppml/{}-{}.txt'
url = template.format(year_numbr, month_name)
ppml_raw = urllib.request.urlopen(url).read()
ppml = ppml_raw.decode('utf-8')
print(ppml)

以上是关于python urllib Python模块:按年和月分列的ARIN PPML档案的主要内容,如果未能解决你的问题,请参考以下文章

学习Python的urllib模块

Python爬虫--Urllib库

Python技能树共建python urllib 模块

Python的urllib和urllib2模块

Urllib 模块

Python3的urllib模块的变化和介绍