search
HomeBackend DevelopmentPython TutorialHow to use a Python script to automatically take photos, take screenshots and send email notifications after the computer wakes up

    背景

    背景是这样的, 我的家里台式机常年 休眠, 并配置了 Wake On Lan (WOL) 方便远程唤醒并使用.

    但是我发现, 偶尔台式机会被其他情况唤醒, 这时候我并不知道, 结果白白运行了好几天, 浪费了很多电.

    所以我的需求是这样的:

    电脑唤醒后(可能是开机, 有可能是从休眠状态唤醒), 自动做如下几件事:

    • 摄像头拍照(判断是不是有人在使用)

    • 屏幕截图(判断是不是有人在使用)

    • 生成一封邮件, 告诉我「电脑已启动」并附上拍照和截图;

    • 发送到我的邮箱.

    具体实现

    ️ 摄像头拍照

    概述:

    通过 opencv-python 包实现.

    具体的包名为: opencv-python

    依赖 numpy

    所以安装命令为:

    python -m pip install numpy
    python -m pip install opencv-python

    然后导入语句为: import cv2

    源码如下:

    # 打开摄像头并拍照
    cap = cv2.VideoCapture(0)  # 0 表示打开 PC 的内置摄像头(若参数是视频文件路径则打开视频)
    #  按帧读取图片或视频
    # ret,frame 是 cap.read() 方法的两个返回值。
    # 其中 ret 是布尔值,如果读取帧是正确的则返回 True,如果文件读取到结尾,它的返回值就为 False。
    # frame 就是每一帧的图像,是个三维矩阵。
    ret, frame = cap.read()  # 按帧读取图片
    cv2.imwrite('p1.jpg', frame)  # 保存图像
    cap.release()  # 释放(关闭)摄像头

    屏幕截图

    概述:

    通过 pyautogui 包实现.

    pyautogui 是比较简单的,但是不能指定获取程序的窗口,因此窗口也不能遮挡,不过可以指定截屏的位置,0.04s 一张截图,比 PyQt 稍慢一点,但也很快了。

    import pyautogui
    import cv2
    
    
    # 截图
    screen_shot = pyautogui.screenshot()
    screen_shot.save('screenshot.png')

    写邮件

    概述:

    通过 email 包实现.

    MIMEMultipart 类型

    MIME 邮件中各种不同类型的内容是分段存储的,各个段的排列方式、位置信息都通过 Content-Type 域的 multipart 类型来定义。 multipart 类型主要有三种子类型:

    • mixed : 附件

    • alternative : 纯文本和超文本内容

    • related :内嵌资源. 比如:在发送 html 格式的邮件内容时,可能使用图像作为 html 的背景,html 文本会被存储在 alternative 段中,而作为背景的图像则会存储在 related 类型定义的段中

    具体源码如下:

    from email.mime.multipart import MIMEMultipart
    from email.mime.text import MIMEText
    from email.mime.image import MIMEImage
    
    
    sender = 'admin@example.com'  # 发件人
    receivers = 'admin@example.com'  # 收件人
    pw = 'p@ssw0rd'  # 三方客户端登录邮箱授权码
    subject = '电脑已启动拍照并发送'  # 邮件主题
    text = '您好,您的电脑已开机,并拍摄了如下照片:'  # 邮件正文
    
    msg = MIMEMultipart('mixed')  # 定义含有附件类型的邮件
    msg['Subject'] = subject  # 邮件主题
    msg['From'] = sender  # 发件人
    msg['To'] = receivers  # 收件人
    # MIMEText三个参数:第一个为文本内容,第二个 plain 设置文本格式,第三个 utf-8 设置编码
    # 构造一个文本邮件对象, plain 原格式输出; html html格式输出
    text = MIMEText(text, 'plain', 'utf-8')
    msg.attach(text)  # 将文本内容添加到邮件中
    
    for i in ('p1.jpg', 'screenshot.png'):
        sendImg = open(i, 'rb').read()  # 读取刚才的图片
        img = MIMEImage(sendImg)  # 构造一个图片附件对象
        # 指定下载的文件类型为:附件, 并加上文件名
        img['Content-Disposition'] = 'attachment; filename={}'.format(i)
        msg.attach(img)  # 将附件添加到邮件中
    
    msg_tsr = msg.as_string()  # 将msg对象变为str

    ️ 发邮件

    概述:

    通过 smtplib 包实现.

    源码如下:

    import smtplib
    
    
    # 发送邮件
    try:
        smtp = smtplib.SMTP()  # 定义一个SMTP(传输协议)对象
        smtp.connect('smtp.example.com', 25)  # 连接到邮件发送服务器,默认25端口
        smtp.login(sender, pw)  # 使用发件人邮件及授权码登陆
        smtp.sendmail(sender, receivers, msg_tsr)  # 发送邮件
        smtp.quit()  # 关闭邮箱,退出登陆
    except Exception as e:
        print('\033[31;1m出错了:%s\033[0m' % (e))
    else:
        print('邮件发送成功!')

    台式机唤醒后触发 python 脚本

    Windows 脚本

    Windows bat 脚本如下:

    @echo off
    timeout /T 15 /NOBREAK # sleep 15s
    cd /d D:\scripts\auto_send_email
    python auto_email.py  # 执行py文件

    任务计划程序

    进入 计算机管理 -> 系统工具 -> 任务计划程序. 添加如下任务计划:

    • 安全选项:

      • 勾选: 不管用户是否登录都要运行

      • 勾选: 使用最高权限运行

    • 触发器:

      • 发生事件时

      • 日志: 系统

      • 源: Power-Troubleshooter

      • 事件 ID: 1

    • 操作: 启动程序: D:\scripts\auto_email.bat

    The above is the detailed content of How to use a Python script to automatically take photos, take screenshots and send email notifications after the computer wakes up. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

    本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

    详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

    本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

    Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

    本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

    归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

    本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

    Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

    本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

    分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

    VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

    详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

    本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

    python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

    pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Best Graphic Settings
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. How to Fix Audio if You Can't Hear Anyone
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SecLists

    SecLists

    SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

    MinGW - Minimalist GNU for Windows

    MinGW - Minimalist GNU for Windows

    This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment