python爬取糗事百科段子并发送到邮箱

#coding=utf-8
import smtplib
from email.mime.text import MIMEText
from email.utils import formataddr
import requests
from bs4 import BeautifulSoup

r = requests.get('https://www.qiushibaike.com/text/page/1/')
soup = BeautifulSoup(r.content,'lxml')

contentUrl = soup.find('div',class_='col1 old-style-col1').find('div',class_="article block untagged mb15 typs_long").find('a',class_="contentHerf").get('href')

textUrl = 'https://www.qiushibaike.com' + contentUrl

textR = requests.get(textUrl)
textSoup = BeautifulSoup(textR.content, 'lxml')
text = textSoup.find('div',class_="content").text

my_sender='*********@qq.com'  # 发件人邮箱账号
my_pass = 'werprgqmxaadbasd'   # 发件人邮箱授权码
my_user='*********@163.com'   # 收件人邮箱
def mail():
  ret=True
  try:
    msg=MIMEText(text,'plain','utf-8') #填写邮件内容
    msg['From']=formataddr(["发件人昵称",my_sender]) # 括号里的对应发件人邮箱昵称、发件人邮箱账号
    msg['To']=formataddr(["收件人昵称",my_user])       # 括号里的对应收件人邮箱昵称、收件人邮箱账号
    msg['Subject']="每日笑话"        # 邮件的主题,也可以说是标题
 
    server=smtplib.SMTP_SSL("smtp.qq.com", 465) # 发件人邮箱中的SMTP服务器,端口是25
    server.login(my_sender, my_pass) # 括号中对应的是发件人邮箱账号、邮箱密码
    server.sendmail(my_sender,[my_user,],msg.as_string()) # 括号中对应的是发件人邮箱账号、收件人邮箱账号、发送邮件
    server.quit() # 关闭连接
  except Exception: # 如果 try 中的语句没有执行,则会执行下面的 ret=False
    ret=False
  return ret
ret=mail()
if ret:
  print("邮件发送成功")
else:
  print("邮件发送失败")
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值