10個Python指令碼來自動化你的日常任務
在這個自動化時代,我們有很多重複無聊的工作要做。想想這些你不再需要一次又一次地做的無聊的事情,讓它自動化,讓你的生活更輕鬆。那麼在本文中,我將向您介紹 10 個 Python 自動化指令碼,以使你的工作更加自動化,生活更加輕鬆。因此,沒有更多的重複任務將這篇文章放在您的列表中,讓我們開始吧。
01、解析和提取 HTML
此自動化指令碼將幫助你從網頁 URL 中提取 HTML,然後還為你提供可用於解析 HTML 以獲取資料的功能。這個很棒的指令碼對於網路爬蟲和那些想要解析 HTML 以獲取重要資料的人來說是一種很好的享受。
# Parse and Extract HTML
# pip install gazpacho
import gazpacho
# Extract HTML from URL
url =
'
html = gazpacho.get(url)
print(html)
# Extract HTML with Headers
headers = {
'User-Agent':
'Mozilla/5.0'}
html = gazpacho.get(url, headers=headers)
print(html)
# Parse HTML
parse = gazpacho.Soup(html)
# Find single tags
tag1 = parse.find(
'h1')
tag2 = parse.find(
'span')
# Find multiple tags
tags1 = parse.find_all(
'p')
tags2 = parse.find_all(
'a')
# Find tags by class
tag = parse.find(
'.class')
# Find tags by Attribute
tag = parse.find(
"div", attrs={
"class":
"test"})
# Extract text from tags
text = parse.find(
'h1').text
text = parse.find_all(
'p')[0].text
02、二維碼掃描器
擁有大量二維碼影像或只想掃描二維碼影像,那麼此自動化指令碼將幫助你。該指令碼使用 Qrtools 模組,使你能夠以程式設計方式掃描 QR 影像。
# Qrcode Scanner
# pip install qrtools
from qrtools import Qr
def Scan_Qr(qr_img):
qr = Qr()
qr.decode(qr_img)
print(qr.data)
return qr.data
print(
"Your Qr Code is: ", Scan_Qr(
"qr.png"))
03、截圖
現在,你可以使用下面這個很棒的指令碼以程式設計方式擷取螢幕截圖。使用此指令碼,你可以直接截圖或擷取特定區域的螢幕截圖。
# Grab Screenshot
# pip install pyautogui
# pip install Pillow
from pyautogui import screenshot
import time
from PIL import ImageGrab
# Grab Screenshot of Screen
def grab_screenshot():
shot = screenshot()
shot.save(
'my_screenshot.png')
# Grab Screenshot of Specific Area
def grab_screenshot_area():
area = (0, 0, 500, 500)
shot = ImageGrab.grab(area)
shot.save(
'my_screenshot_area.png')
# Grab Screenshot with Delay
def grab_screenshot_delay():
time.sleep(5)
shot = screenshot()
shot.save(
'my_screenshot_delay.png')
04、建立有聲讀物
厭倦了手動將您的 PDF 書籍轉換為有聲讀物,那麼這是你的自動化指令碼,它使用 GTTS 模組將你的 PDF 文字轉換為音訊。
# Create Audiobooks
# pip install gTTS
# pip install PyPDF2
from PyPDF2 import PdfFileReader as reader
from gtts import gTTS
def create_audio(pdf_file):
read_Pdf = reader(open(pdf_file,
'rb'))
for page
in range(read_Pdf.numPages):
text = read_Pdf.getPage(page).extractText()
tts = gTTS(text, lang=
'en')
tts.save(
'page' + str(page) +
'.mp3')
create_audio(
'book.pdf')
05、PDF 編輯器
使用以下自動化指令碼使用 Python 編輯 PDF 檔案。該指令碼使用 PyPDF4 模組,它是 PyPDF2 的升級版本,下面我編寫了 Parse Text、Remove pages 等常用功能。當你有大量 PDF 檔案要編輯或需要以程式設計方式在 Python 專案中使用指令碼時,這是一個方便的指令碼。
# PDF Editor
# pip install PyPDf4
import PyPDF4
# Parse the Text from PDF
def parse_text(pdf_file):
reader = PyPDF4.PdfFileReader(pdf_file)
for page
in reader.pages:
print(page.extractText())
# Remove Page from PDF
def remove_page(pdf_file, page_numbers):
filer = PyPDF4.PdfReader(
'source.pdf',
'rb')
out = PyPDF4.PdfWriter()
for index
in page_numbers:
page = filer.pages[index]
out.add_page(page)
with open(
'rm.pdf',
'wb') as f:
out.write(f)
# Add Blank Page to PDF
def add_page(pdf_file, page_number):
reader = PyPDF4.PdfFileReader(pdf_file)
writer = PyPDF4.PdfWriter()
writer.addPage()
with open(
'add.pdf',
'wb') as f:
writer.write(f)
# Rotate Pages
def rotate_page(pdf_file):
reader = PyPDF4.PdfFileReader(pdf_file)
writer = PyPDF4.PdfWriter()
for page
in reader.pages:
page.rotateClockwise(90)
writer.addPage(page)
with open(
'rotate.pdf',
'wb') as f:
writer.write(f)
# Merge PDFs
def merge_pdfs(pdf_file1, pdf_file2):
pdf1 = PyPDF4.PdfFileReader(pdf_file1)
pdf2 = PyPDF4.PdfFileReader(pdf_file2)
writer = PyPDF4.PdfWriter()
for page
in pdf1.pages:
writer.addPage(page)
for page
in pdf2.pages:
writer.addPage(page)
with open(
'merge.pdf',
'wb') as f:
writer.write(f)
06、迷你 Stackoverflow
作為一名程式設計師,我知道我們每天都需要 StackOverflow,但你不再需要在 Google 上搜尋它。現在,在您繼續處理專案的同時,在你的 CMD 中獲得直接解決方案。透過使用 Howdoi 模組,你可以在命令提示符或終端中獲得 StackOverflow 解決方案。你可以在下面找到一些可以嘗試的示例。
# Automate Stackoverflow
# pip install howdoi
# Get Answers in CMD
#example 1
> howdoi how
do i install python3
# example 2
> howdoi selenium Enter keys
# example 3
> howdoi how to install modules
# example 4
> howdoi Parse html with python
# example 5
> howdoi int not iterable error
# example 6
> howdoi how to parse pdf with python
# example 7
> howdoi Sort list
in python
# example 8
> howdoi merge two lists
in python
# example 9
>howdoi get last element
in list python
# example 10
> howdoi fast way to sort list
07、自動化手機
此自動化指令碼將幫助你使用 Python 中的 Android 除錯橋 (ADB) 自動化你的智慧手機。下面我將展示如何自動執行常見任務,例如滑動手勢、呼叫、傳送簡訊等等。您可以瞭解有關 ADB 的更多資訊,並探索更多令人興奮的方法來實現手機自動化,讓您的生活更輕鬆。
# Automate Mobile Phones
# pip install opencv-python
import subprocess
def main_adb(cm):
p = subprocess.Popen(cm.split(
' '), stdout=subprocess.PIPE, shell=True)
(output, _) = p.communicate()
return output.decode(
'utf-8')
# Swipe
def swipe(x1, y1, x2, y2, duration):
cmd =
'adb shell input swipe {} {} {} {} {}'.format(x1, y1, x2, y2, duration)
return main_adb(cmd)
# Tap or Clicking
def tap(x, y):
cmd =
'adb shell input tap {} {}'.format(x, y)
return main_adb(cmd)
# Make a Call
def make_call(number):
cmd = f
"adb shell am start -a android.intent.action.CALL -d tel:{number}"
return main_adb(cmd)
# Send SMS
def send_sms(number, message):
cmd =
'adb shell am start -a android.intent.action.SENDTO -d sms:{} --es sms_body "{}"'.format(number, message)
return main_adb(cmd)
# Download File From Mobile to PC
def download_file(file_name):
cmd =
'adb pull /sdcard/{}'.format(file_name)
return main_adb(cmd)
# Take a screenshot
def screenshot():
cmd =
'adb shell screencap -p'
return main_adb(cmd)
# Power On and Off
def power_off():
cmd =
'"adb shell input keyevent 26"'
return main_adb(cmd)
08、監控 CPU/GPU 溫度
你可能使用 CPU-Z 或任何規格監控軟體來捕獲你的 Cpu 和 Gpu 溫度,但你也可以透過程式設計方式進行。好吧,這個指令碼使用 Pythonnet 和 OpenhardwareMonitor 來幫助你監控當前的 Cpu 和 Gpu 溫度。你可以使用它在達到一定溫度時通知自己,也可以在 Python 專案中使用它來簡化日常生活。
# Get CPU/GPU Temperature
# pip install pythonnet
import clr
clr.AddReference(
"OpenHardwareMonitorLib")
from OpenHardwareMonitorLib import *
spec = Computer()
spec.GPUEnabled = True
spec.CPUEnabled = True
spec.Open()
# Get CPU Temp
def Cpu_Temp():
while True:
for cpu
in range(0, len(spec.Hardware[0].Sensors)):
if
"/temperature"
in str(spec.Hardware[0].Sensors[cpu].Identifier):
print(str(spec.Hardware[0].Sensors[cpu].Value))
# Get GPU Temp
def Gpu_Temp()
while True:
for gpu
in range(0, len(spec.Hardware[0].Sensors)):
if
"/temperature"
in str(spec.Hardware[0].Sensors[gpu].Identifier):
print(str(spec.Hardware[0].Sensors[gpu].Value))
09、Instagram 上傳機器人
Instagram 是一個著名的社交媒體平臺,你現在不需要透過智慧手機上傳照片或影片。你可以使用以下指令碼以程式設計方式執行此操作。
# Upload Photos and Video on Insta
# pip install instabot
from instabot import Bot
def Upload_Photo(img):
robot = Bot()
robot.login(user)
robot.upload_photo(img, caption=
"Medium Article")
print(
"Photo Uploaded")
def Upload_Video(video):
robot = Bot()
robot.login(user)
robot.upload_video(video, caption=
"Medium Article")
print(
"Video Uploaded")
def Upload_Story(img):
robot = Bot()
robot.login(user)
robot.upload_story(img, caption=
"Medium Article")
print(
"Story Photos Uploaded")
Upload_Photo(
"img.jpg")
Upload_Video(
"video.mp4")
10、影片水印
使用此自動化指令碼為你的影片新增水印,該指令碼使用 Moviepy,這是一個方便的影片編輯模組。在下面的指令碼中,你可以看到如何新增水印並且可以自由使用它。
# Video Watermark with Python
# pip install moviepy
from moviepy.editor import *
clip = VideoFileClip(
"myvideo.mp4", audio=True)
width,height = clip.size
text = TextClip(
"WaterMark", font=
'Arial', color=
'white', fontsize=28)
set_color = text.on_color(size=(clip.w + text.w, text.h-10), color=(0,0,0), pos=(6,
'center'), col_opacity=0.6)
set_textPos = set_color.set_pos( lambda pos: (max(width/30,int(width-0.5* width* pos)),max(5*height/6,int(100* pos))) )
Output = CompositeVideoClip([clip, set_textPos])
Output.duration = clip.duration
Output.write_videofile(
"output.mp4", fps=30, codec=
'libx264')
- END -
原文連結:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70013542/viewspace-2919301/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 在Linux中,如何編寫一個指令碼來自動執行日常任務?Linux指令碼
- 用python寫一個自動化盲註指令碼Python指令碼
- python+robotframework --第一個UI自動化指令碼PythonFrameworkUI指令碼
- 幾個shell自動化指令碼(轉)指令碼
- oracle10g_自動啟動服務指令碼Oracle指令碼
- specjvm自動化指令碼JVM指令碼
- docker指令碼自動化Docker指令碼
- 自動化RMAN指令碼指令碼
- 自動化瓦力多渠道打包python指令碼Python指令碼
- 如何使用ChatGPT來自動化Python任務ChatGPTPython
- Bash、Python和JavaScript哪個指令碼更適合執行自動化任務?- SurangaPythonJavaScript指令碼
- 微服務專案Git倉庫自動化指令碼微服務Git指令碼
- 用Python開發自動化測試指令碼Python指令碼
- Dockerfile---指令碼自動化Docker指令碼
- vue自動化部署指令碼Vue指令碼
- [python] request 介面測試自動化指令碼轉化為 [locust] 效能測試指令碼Python指令碼
- python自動化指令碼例項100條-自動化運維基礎例項解析-Python批量登入到伺服器執行任務...Python指令碼運維伺服器
- centos 自動啟動指令碼和自啟動服務CentOS指令碼
- Python——自動簽到指令碼Python指令碼
- 一個自動ftp的指令碼(轉)FTP指令碼
- mydumper自動化安裝指令碼指令碼
- oracle 巡檢指令碼(自動化)Oracle指令碼
- JMeter 介面自動化測試(手工轉自動化指令碼)JMeter指令碼
- dataguard switchover的自動化指令碼實現指令碼
- 自動化指令碼安裝mysql shell指令碼範例指令碼MySql
- 一個自動生成oracle job的指令碼Oracle指令碼
- 前端自動指令碼中常見的幾個問題,你遇到了嗎?前端指令碼
- solaris 10下的oracle 10g 自動啟動指令碼Oracle 10g指令碼
- 利用python實現批量自動化運維指令碼案例薦Python運維指令碼
- ZT 自動10046 trace指令碼指令碼
- 開機自動執行python指令碼Python指令碼
- python實現自動搶課指令碼Python指令碼
- 讓你的程式碼自動格式化
- 自動化安裝zabbix指令碼(3.0/3.2)指令碼
- shell指令碼自動化採集效能sql指令碼SQL
- Hadoop自動化安裝shell指令碼Hadoop指令碼
- 使用shell生成orabbix自動化配置指令碼指令碼
- 介面自動化指令碼設計規範指令碼