python从文件读取邮件地址输出的例子

发布时间:2020-07-12编辑:脚本学堂
本文介绍一个python的小例子,从任意的文件中提取出邮件地址,有需要的朋友参考下。

python从文件读取邮件地址:
 

复制代码 代码示例:
#!/bin/python
# Hello, this script is written in Python - http://www.python.org
# This script takes whatever you throw at stdin and outputs email addresses.
# eg. python email_extractor.py < PythonFAQ.html
# This script can be used for whatever you want, EXCEPT SPAMMING !
# site: www.jb200.com
#
import sys,re
print 'n'.join(re.findall('([w.-]+@[w.-]+)',sys.stdin.read()))

您可能感兴趣的文章:
分享:python发邮件的综合实例
python邮件发送模块smtplib的实例详解
python smtplib发送邮件的例子 python使用126邮箱发送邮件
python smtplib模块发邮件(带附件)的例子
Python发送带附件的邮件的实现代码
python 发送邮件乱码的解决方法
python使用gmail发送邮件的实例代码
python smtplib模块发送邮件的实例详解
python smtp模块发送邮件的代码
python发送邮件的脚本一例
python结合php解决发送邮件乱码的问题
python发送邮件的例子
python发送邮件的实例代码
python 发送邮件的代码