当前位置:优草派 > 问答 > Python问答

Python访问互联网有什么模块?

标签: Python  python模块  作者: 罗西汉

回答:

有许多模块可用于访问互联网和处理互联网协议。其中两个最简单的urllib.request用于从URL检索数据,以及smtplib用于发送邮件,示例如下:

>>> from urllib.request import urlopen
>>> with urlopen('http://api/etc/UTC.txt') as response:
>>> import smtplib
>>> server = smtplib.SMTP('localhost')
>>> server.sendmail('soothsayer@example.org', 'jcaesar@example.org')


TOP 10
  • 周排行
  • 月排行