有许多模块可用于访问互联网和处理互联网协议。其中两个最简单的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')