文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

10 个超级高效实用的 Python 自动化脚本!

2023-09-06 15:26

关注

重复性任务总是耗时且无聊,想一想你想要一张一张地裁剪 100 张照片或 Fetch API、纠正拼写和语法等工作,所有这些任务都很耗时,为什么不自动化它们呢?在今天的文章中,我将与你分享 10 个 Python 自动化脚本。

所以,请你把这篇文章放在你的收藏清单上,以备不时之需。

现在,让我们开始吧。

01、 图片优化器

使用这个很棒的自动化脚本,可以帮助把图像处理的更好,你可以像在 Photoshop 中一样编辑它们。

该脚本使用流行的是 Pillow 模块

# Image Optimizing# pip install Pillowimport PIL# Croping im = PIL.Image.open("Image1.jpg")im = im.crop((34, 23, 100, 100))# Resizingim = PIL.Image.open("Image1.jpg")im = im.resize((50, 50))# Flippingim = PIL.Image.open("Image1.jpg")im = im.transpose(PIL.Image.FLIP_LEFT_RIGHT)# Rotatingim = PIL.Image.open("Image1.jpg")im = im.rotate(360)# Compressingim = PIL.Image.open("Image1.jpg")im.save("Image1.jpg", optimize=True, quality=90)# Bluringim = PIL.Image.open("Image1.jpg")im = im.filter(PIL.ImageFilter.BLUR)# Sharpeningim = PIL.Image.open("Image1.jpg")im = im.filter(PIL.ImageFilter.SHARPEN)# Set Brightnessim = PIL.Image.open("Image1.jpg")im = PIL.ImageEnhance.Brightness(im)im = im.enhance(1.5)# Set Contrastim = PIL.Image.open("Image1.jpg")im = PIL.ImageEnhance.Contrast(im)im = im.enhance(1.5)# Adding Filtersim = PIL.Image.open("Image1.jpg")im = PIL.ImageOps.grayscale(im)im = PIL.ImageOps.invert(im)im = PIL.ImageOps.posterize(im, 4)# Savingim.save("Image1.jpg")

02、视频优化器

通过使用以下自动化脚本,你不仅可以使用 Python 来优化视频,还可以使用它来优化图像。该脚本使用 Moviepy 模块,允许你修剪、添加音频、设置视频速度、添加 VFX 等等。

# Video Optimizer# pip install moviepyimport moviepy.editor as pyedit# Load the Videovideo = pyedit.VideoFileClip("vid.mp4")# Trimmingvid1 = video.subclip(0, 10)vid2 = video.subclip(20, 40)final_vid = pyedit.concatenate_videoclips([vid1, vid2])# Speed up the videofinal_vid = final_vid.speedx(2)# Adding Audio to the videoaud = pyedit.AudioFileClip("bg.mp3")final_vid = final_vid.set_audio(aud)# Reverse the Videofinal_vid = final_vid.fx(pyedit.vfx.time_mirror)# Merge two videosvid1 = pyedit.VideoFileClip("vid1.mp4")vid2 = pyedit.VideoFileClip("vid2.mp4")final_vid = pyedit.concatenate_videoclips([vid1, vid2])# Add VFX to Videovid1 = final_vid.fx(pyedit.vfx.mirror_x)vid2 = final_vid.fx(pyedit.vfx.invert_colors)final_vid = pyedit.concatenate_videoclips([vid1, vid2])# Add Images to Videoimg1 = pyedit.ImageClip("img1.jpg")img2 = pyedit.ImageClip("img2.jpg")final_vid = pyedit.concatenate_videoclips([img1, img2])# Save the videofinal_vid.write_videofile("final.mp4")  

03、PDF 转图片

这个小型自动化脚本可以方便地获取整个 PDF 页面并将它们转换为图像。该脚本使用流行的 PyMuPDF 模块,该模块以其 PDF 文本提取而闻名。

# PDF to Images# pip install PyMuPDFimport fitzdef pdf_to_images(pdf_file):    doc = fitz.open(pdf_file)    for p in doc:        pix = p.get_pixmap()        output = f"page{p.number}.png"        pix.writePNG(output)pdf_to_images("test.pdf")

04、获取 API 数据

需要从数据库中获取 API 数据或需要向服务器发送 API 请求。那么这个自动化脚本对你来说是一个方便的工具。使用 Urllib3 模块,可让你获取和发布 API 请求。

# pip install urllib3import urllib3# Fetch API dataurl = "https://api.github.com/users/psf/repos"http = urllib3.PoolManager()response = http.request('GET', url)print(response.status)print(response.data)# Post API dataurl = "https://httpbin.org/post"http = urllib3.PoolManager()response = http.request('POST', url, fields={'hello': 'world'})print(response.status)

05、电池指示灯

这个方便的脚本可以让你设置你想要得到通知的电池百分比,该脚本使用 Pyler 进行通知,使用 Psutil 获取当前的电池百分比。

# Battery Notifier# pip instal plyerfrom plyer import notificationimport psutilfrom time import sleepwhile True:    battery = psutil.sensors_battery()    life = battery.percent    if life < 50:        notification.notify(            title = "Battery Low",            message = "Please connect to power source",            timeout = 10        )    sleep(60)

06、语法固定器

厌倦了校对你的长文章或文本,然后,你可以试试这个自动化脚本,它将扫描你的文本并纠正语法错误,这个很棒的脚本使用 Happtransformer 模块,这是一个机器学习模块,经过训练可以修复文本中的语法错误。

# Grammer Fixer# pip install happytransformerfrom happytransformer import HappyTextToText as HappyTTTfrom happytransformer import TTSettingsdef Grammer_Fixer(Text):    Grammer = HappyTTT("T5","prithivida/grammar_error_correcter_v1")    config = TTSettings(do_sample=True, top_k=10, max_length=100)    corrected = Grammer.generate_text(Text, args=config)    print("Corrected Text: ", corrected.text)Text = "This is smple tet we how know this"Grammer_Fixer(Text)

07、拼写修正

这个很棒的脚本将帮助你纠正你的文本单词拼写错误。你可以在下面找到脚本,将告诉你如何修复句子中的单个单词或多个单词。

# Spell Fixer# pip install textblobfrom textblob import *# Fixing Paragraph Spellsdef fix_paragraph_words(paragraph):    sentence = TextBlob(paragraph)    correction = sentence.correct()    print(correction)# Fixing Words Spellsdef fix_word_spell(word):    word = Word(word)    correction = word.correct()    print(correction)fix_paragraph_words("This is sammple tet!!")fix_word_spell("maangoo")

08、互联网下载器

你们可能使用下载软件从 Internet 下载照片或视频,但现在你可以使用 Python IDM 模块创建自己的下载器。

# Python Downloader# pip install internetdownloadmanagerimport internetdownloadmanager as idmdef Downloader(url, output):    pydownloader = idm.Downloader(worker=20,    part_size=1024*1024*10,    resumable=True,)    pydownloader .download(url, output)Downloader("Link url", "image.jpg")Downloader("Link url", "video.mp4")

09、获取世界新闻

使用此自动化脚本让你随时了解每日世界新闻,你可以使用任何语言从任何国家/地区获取新闻。这个 API 让你每天免费获取 50 篇新闻文章。

# World News Fetcher# pip install requestsimport requestsApiKey = "YOUR_API_KEY"url = "https://api.worldnewsapi.com/search-news?text=hurricane&api-key={ApiKey}"headers = {  'Accept': 'application/json'}response = requests.get(url, headers=headers)print("News: ", response.json())

10、PySide2 GUI

这个自动化脚本将帮助你使用 PySide2 Gui 模块创建你的 GUI 应用程序。你可以在下面找到开始开发体面的现代应用程序所需的每种方法。

# PySide 2 # pip install PySide2from PySide6.QtWidgets import *from PySide6.QtGui import *import sysapp = QApplication(sys.argv)window = QWidget()# Resize the Windowwindow.resize(500, 500)# Set the Window Titlewindow.setWindowTitle("PySide2 Window")# Add Buttonsbutton = QPushButton("Click Me", window)button.move(200, 200)# Add Label Textlabel = QLabel("Hello Medium", window)label.move(200, 150)# Add Input Boxinput_box = QLineEdit(window)input_box.move(200, 250)print(input_box.text())# Add Radio Buttonsradio_button = QRadioButton("Radio Button", window)radio_button.move(200, 300)# Add Checkboxcheckbox = QCheckBox("Checkbox", window)checkbox.move(200, 350)# Add Sliderslider = QSlider(window)slider.move(200, 400)# Add Progress Barprogress_bar = QProgressBar(window)progress_bar.move(200, 450)# Add Image image = QLabel(window)image.setPixmap(QPixmap("image.png"))# Add Message Boxmsg = QMessageBox(window)msg.setText("Message Box")msg.setStandardButtons(QMessageBox.Ok | QMessageBox.Cancel)window.show()sys.exit(app.exec())
- END -


除上述资料外,还附赠全套Python学习资料,包含面试题、简历资料等具体看下方。

🎁福利🎁 全网最全《Python学习资料》免费赠送🆓!

学好 Python 不论是就业还是做副业赚钱都不错,但要学会 Python 还是要有一个学习规划。最后大家分享一份全套的 Python 学习资料,给那些想学习 Python 的小伙伴们一点帮助!

一、Python学习路线

python学习路线图1
在这里插入图片描述

二、Python基础学习

1. 开发工具

2. 学习笔记

在这里插入图片描述

3. 学习视频

在这里插入图片描述

三、Python小白必备手册

图片

四、数据分析全套资源

在这里插入图片描述

五、Python面试集锦

1. 面试资料

在这里插入图片描述

在这里插入图片描述

2. 简历模板

在这里插入图片描述

因篇幅有限,仅展示部分资料,添加上方即可获取

来源地址:https://blog.csdn.net/2301_76161259/article/details/131268380

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯