百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术资源 > 正文

21个Python脚本自动执行日常任务(1)

off999 2024-12-28 14:43 43 浏览 0 评论

引言

作为编程领域摸爬滚打超过十年的老手,我深刻体会到,自动化那些重复性工作能大大节省我们的时间和精力。

Python以其简洁的语法和功能强大的库支持,成为了编写自动化脚本的首选语言。无论你是专业的程序员,还是希望简化日常工作的普通人,Python都能提供你需要的工具。

本文[1]将介绍我实际使用过的21个Python脚本,它们能帮助你自动化各种任务,特别适合那些希望在工作中节省时间、提升效率的朋友。

1. 批量修改文件名

手动一个个修改文件名既费时又费力,但借助Python的os模块,你可以轻松实现自动化批量改名。

下面是一个示例脚本,它能够根据指定的模式,批量重命名文件夹中的多个文件:

import os

def bulk_rename(folder_path, old_name_part, new_name_part):
    for filename in os.listdir(folder_path):
        if old_name_part in filename:
            new_filename = filename.replace(old_name_part, new_name_part)
            os.rename(os.path.join(folder_path, filename), os.path.join(folder_path, new_filename))
            print(f"Renamed {filename} to {new_filename}")

folder = '/path/to/your/folder' bulk_rename(folder, 'old_part', 'new_part')

这个脚本查找文件名中包含 old_name_part 的文件,并将这部分替换为 new_name_part。

2. 自动备份文件

我们都知道定期备份文件的重要性,这个任务可以通过 Python 的 shutil 模块轻松实现自动化。

这个脚本会将一个目录中的所有文件复制到另一个目录,用于备份:

import shutil
import os

def backup_files(src_dir, dest_dir):
    if not os.path.exists(dest_dir):
        os.makedirs(dest_dir)
    for file in os.listdir(src_dir):
        full_file_name = os.path.join(src_dir, file)
        if os.path.isfile(full_file_name):
            shutil.copy(full_file_name, dest_dir)
            print(f"Backed up {file} to {dest_dir}")

source = '/path/to/source/directory' destination = '/path/to/destination/directory' backup_files(source, destination)

你可以利用任务计划工具,比如 Linux 的 cron 或 Windows 的 Task Scheduler,来设置这个脚本每天自动执行。

3. 从网上下载文件

如果你经常需要从网上下载文件,那么可以通过 aiohttp 库来自动化这个过程。

以下是一个简单的脚本,用于从网址下载文件:

import aiohttp
import asyncio
import aiofiles

async def download_file(url, filename):
    async with aiohttp.ClientSession() as session:
        async with session.get(url) as response:
            async with aiofiles.open(filename, 'wb') as file:
                await file.write(await response.read())
            print(f"Downloaded {filename}")

urls = {
    'https://example.com/file1.zip': 'file1.zip',
    'https://example.com/file2.zip': 'file2.zip'
}

async def download_all():
    tasks = [download_file(url, filename) for url, filename in urls.items()]
    await asyncio.gather(*tasks)

asyncio.run(download_all())

这个脚本会从指定的网址下载文件,并将其存储到你指定的目录中。

4. 自动化电子邮件报告

如果你需要定期发送电子邮件报告,可以通过 smtplib 库实现自动化,该库使得从 Gmail 账户发送邮件变得简单:

import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart

def send_email(subject, body, to_email):
    sender_email = 'youremail@gmail.com'
    sender_password = 'yourpassword'
    receiver_email = to_email

    msg = MIMEMultipart()
    msg['From'] = sender_email
    msg['To'] = receiver_email
    msg['Subject'] = subject
    msg.attach(MIMEText(body, 'plain'))

    try:
        server = smtplib.SMTP('smtp.gmail.com', 587)
        server.starttls()
        server.login(sender_email, sender_password)
        server.sendmail(sender_email, receiver_email, msg.as_string())
        server.quit()
        print("Email sent successfully!")
    except Exception as e:
        print(f"Failed to send email: {e}")

subject = 'Monthly Report'
body = 'Here is the monthly report.'
send_email(subject, body, 'receiver@example.com')

这个脚本会向指定的收件人发送一封包含主题和内容的简单邮件。如果你采用这种方法,请记得在 Gmail 中开启“低安全性应用”的权限。

5. 任务调度(任务自动化)

通过 schedule 库,你可以轻松地设置任务计划,实现在特定时间自动执行任务,例如发送邮件或运行备份脚本:

import schedule
import time

def job():
    print("Running scheduled task!")

# Schedule the task to run every day at 10:00 AM
schedule.every().day.at("10:00").do(job)

while True:
    schedule.run_pending()
    time.sleep(1)

这个脚本会持续运行,并在设定的时间点执行任务,例如,每天的上午10点。

6. 网络爬取以收集数据

采用 aiohttp 库进行异步HTTP请求,相比传统的同步请求库,能够提高网络爬取的效率。

这个示例展示了如何同时抓取多个网页。

import aiohttp
import asyncio
from bs4 import BeautifulSoup

async def fetch(session, url):
    async with session.get(url) as response:
        return await response.text()

async def scrape(urls):
    async with aiohttp.ClientSession() as session:
        tasks = [fetch(session, url) for url in urls]
        html_pages = await asyncio.gather(*tasks)
        for html in html_pages:
            soup = BeautifulSoup(html, 'html.parser')
            print(soup.title.string)

urls = ['https://example.com/page1', 'https://example.com/page2'] asyncio.run(scrape(urls))

7. 社交媒体内容自动化发布

如果你负责运营社交媒体账号,可以通过使用 Tweepy(针对 Twitter)和 Instagram-API(针对 Instagram)等库来实现内容的自动发布。

以下是一个使用 Tweepy 库自动发布推文的示例:

import tweepy

def tweet(message):
    consumer_key = 'your_consumer_key'
    consumer_secret = 'your_consumer_secret'
    access_token = 'your_access_token'
    access_token_secret = 'your_access_token_secret'

    auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
    auth.set_access_token(access_token, access_token_secret)

    api = tweepy.API(auth)

    api.update_status(message)
    print("Tweet sent successfully!")

tweet("Hello, world!")

这个脚本会在你的 Twitter 账号上发布一条内容为“Hello, world!”的推文。

8. 自动化发票生成

如果你经常需要生成发票,可以通过 Fpdf 等库来自动化这一工作,生成 PDF 格式的发票。

from fpdf import FPDF

def create_invoice(client_name, amount):
    pdf = FPDF()
    pdf.add_page()
    pdf.set_font("Arial", size=12)
    pdf.cell(200, 10, txt="Invoice", ln=True, align='C')
    pdf.cell(200, 10, txt=f"Client: {client_name}", ln=True, align='L')
    pdf.cell(200, 10, txt=f"Amount: ${amount}", ln=True, align='L')
    pdf.output(f"{client_name}_invoice.pdf")
    print(f"Invoice for {client_name} created successfully!")

create_invoice('John Doe', 500)

这个脚本生成一份简单的发票,并将其保存为 PDF 格式。

9. 网站正常运行时间监控

利用 Python 的 requests 库,可以自动化地监控网站的正常运行时间,定期检测网站是否处于在线状态:

import requests
import time

def check_website(url):
    try:
        response = requests.get(url)
        if response.status_code == 200:
            print(f"Website {url} is up!")
        else:
            print(f"Website {url} returned a status code {response.status_code}")
    except requests.exceptions.RequestException as e:
        print(f"Error checking website {url}: {e}")

url = 'https://example.com' while True: check_website(url) time.sleep(3600) # Check every hour

这个脚本会检测网站是否能够访问,并输出其状态码。

10. 电子邮件自动回复

如果你经常收到邮件并希望建立自动回复机制,可以利用 imaplib 和 smtplib 这两个库来实现对邮件的自动回复功能:

import imaplib
import smtplib
from email.mime.text import MIMEText

def auto_reply():
    # Connect to email server
    mail = imaplib.IMAP4_SSL("imap.gmail.com")
    mail.login('youremail@gmail.com', 'yourpassword')
    mail.select('inbox')

    # Search for unread emails
    status, emails = mail.search(None, 'UNSEEN')

    if status == "OK":
        for email_id in emails[0].split():
            status, email_data = mail.fetch(email_id, '(RFC822)')
            email_msg = email_data[0][1].decode('utf-8')

            # Send auto-reply
            send_email("Auto-reply", "Thank you for your email. I'll get back to you soon.", 'sender@example.com')

def send_email(subject, body, to_email):
    sender_email = 'youremail@gmail.com'
    sender_password = 'yourpassword'
    receiver_email = to_email

    msg = MIMEText(body)
    msg['From'] = sender_email
    msg['To'] = receiver_email
    msg['Subject'] = subject

    with smtplib.SMTP_SSL('smtp.gmail.com', 465) as server:
        server.login(sender_email, sender_password)
        server.sendmail(sender_email, receiver_email, msg.as_string())

auto_reply()

这个脚本会对未读邮件自动发送预设的回复信息。

[1]Source: https://www.tecmint.com/python-automation-scripts/

相关推荐

android windows7下载(安卓安装win7)

1、在电脑桌面上找到电脑的控制面板,点击进入控制面板;2、点击控制面板右上角的“查看方式”下拉菜单中选择“类别”选项;3、接着点击“时钟,语言和区域”选项;4、单击语言下方的“添加语言”;5、左键单击...

华为路由器设置步骤图解(华为路由器用什么设置)

华为路由器设置无线网络方法:【开启路由器的无线功能】1、进入路由器:打开浏览器,在地址栏输入192.168.1.1(一般路由器地址是这个或者查看路由器背面的登录信息)进路由-输入用户名,密码,(默认...

怎么恢复已删除文件(怎样恢复已删文件)

1、首先打开电脑管家工具箱。找到“文件恢复”工具。2、点击【恢复被删除的文件】并开始恢复3、选择要恢复的文件和目录所在的位置4、耐心等待扫描结果,整个过程受磁盘大小影响5、选择想要恢复的...

电脑桌面设置密码(电脑桌面设置密码不让别人乱开)
电脑桌面设置密码(电脑桌面设置密码不让别人乱开)

第一步点击电脑左下角的开始,选择设置。第二步选择账户。第三步在左侧选择登录选项,点击密码下面的添加,即可创建密码了。在钉钉电脑版中,是不能直接设置桌面密码的。不过,你可以通过设置电脑锁屏来保护个人隐私。具体步骤如下:1.打开电脑的“设...

2025-12-23 19:51 off999

破解游戏平台(破解游戏平台大全)

破解的steamvr游戏,你可以去虎虎VR下载,他们都是免费的。貌似是国外搬运的。是非常有可能会会遭到封禁的,平台不鼓励这种东西,只要一举报马上就会疯。

显卡驱动更新不了怎么办(显卡驱动一直更新失败)

第一种:解除BIOS限制有些显卡型号会在BIOS上面限制显卡驱动的更新,需要取消其限制才可以更新显卡驱动。第一步:重启电脑,在重启的过程中按住DEL键,进入BIOS界面。第二步:在BIOS界面中,找到...

win10系统怎么更新到最新版本

1、点击打开开始菜单,从左边找到【设置】2、打开设置,点击下面的【更新和恢复】,执行系统更新检查。3、打开Windows更新,点下面的【高级选项】4、进入高级选项找到【选择预览版的安装方式】,更改更新...

怎么给u盘单个文件加密(如何对u盘里面的单个文件进行加密)

可以使用加密软件对U盘文件进行受控加密,可以加密单个文件,也可以批量加密文件。通过用户身份认证和计算机认证(可选)的双重认证方式,确保只有特定的人员才能使用该U盘。设定密码、密保的最多尝试次数,超过则...

怎么换手机密码(怎么换手机密码6位数)

1、打开手机主屏幕然后进入【设置】功能;2、然后再选中设置里面进入【密码】;3、之后需要输入一次旧密码进入密码锁定页面;4、然后在密码页面选择【更改密码】功能;5、然后在更改密码页面输入旧密码;6、旧...

windows10设备管理器在哪(window10设备管理器在哪个位置)

1.没有其他设置2.因为Windows10的设备管理器是一个用于管理计算机硬件设备的工具,它主要用于查看和更新设备驱动程序,以及解决设备冲突等问题。它的功能和选项是经过精心设计和筛选的,以提供最...

1t固态硬盘最佳分区(1t固态硬盘分区比例推荐)

对于windows系统来说,建议分配100G~200G空间给C盘,用来安装操作系统,因为windows会在使用过程中不断产生垃圾文件。分配300~400G空间给D盘,用来安装应用软件...

中国疫情突然没了(中国疫情怎么又严重了吗)

没有消退。因为最近的数据显示,日本的新冠病毒感染病例依然存在,虽然相对于其他国家来说确实比较平稳,但是日本政府仍在持续地采取防疫措施来控制疫情的传播。如果说疫情已经消退,那么日本政府应该会解除许多防疫...

win11笔记本怎么看显卡配置(win10怎么看笔记本显卡)

右键Windows11的开始菜单进入【设备管理器】,再从【显示适配器】中找到对应的显卡,再右键进入【属性】,即可在【驱动程序】标签下看的对应的显卡型号。  1.鼠标右键点击Windows10的开始菜单...

手机云电脑免费软件(手机云电脑要钱吗)

远程桌面就是咯,还有网吧使用的无盘系统。不过现在一台低端电脑价格已经很低了,比那种所谓的云终端贵不了多少,自己家用,仅仅是为了省钱完全没必要这么搞。如果你想在电脑上使用云手机,你可以通过两种方式实现。...

qq怎么看以前删掉的好友(qq怎么看以前删掉的好友记录)
  • qq怎么看以前删掉的好友(qq怎么看以前删掉的好友记录)
  • qq怎么看以前删掉的好友(qq怎么看以前删掉的好友记录)
  • qq怎么看以前删掉的好友(qq怎么看以前删掉的好友记录)
  • qq怎么看以前删掉的好友(qq怎么看以前删掉的好友记录)

取消回复欢迎 发表评论: