91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python自動化腳本代碼如何寫

發布時間:2023-04-12 09:43:42 來源:億速云 閱讀:108 作者:iii 欄目:編程語言

這篇文章主要講解了“Python自動化腳本代碼如何寫”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Python自動化腳本代碼如何寫”吧!

1、自動化閱讀網頁新聞

這個腳本能夠實現從網頁中抓取文本,然后自動化語音朗讀,當你想聽新聞的時候,這是個不錯的選擇。

代碼分為兩大部分,第一通過爬蟲抓取網頁文本呢,第二通過閱讀工具來朗讀文本。

需要的第三方庫:

Beautiful Soup - 經典的HTML/XML文本解析器,用來提取爬下來的網頁信息

requests - 好用到逆天的HTTP工具,用來向網頁發送請求獲取數據

Pyttsx3 - 將文本轉換為語音,并控制速率、頻率和語音

import pyttsx3
import requests
from bs4 import BeautifulSoup
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
newVoiceRate = 130 ## Reduce The Speech Rate
engine.setProperty('rate',newVoiceRate)
engine.setProperty('voice', voices[1].id)
def speak(audio):
engine.say(audio)
engine.runAndWait()
text = str(input("Paste articlen"))
res = requests.get(text)
soup = BeautifulSoup(res.text,'html.parser')
articles = []
for i in range(len(soup.select('.p'))):
article = soup.select('.p')[i].getText().strip()
articles.append(article)
text = " ".join(articles)
speak(text)
# engine.save_to_file(text, 'test.mp3') ## If you want to save the speech as a audio file
engine.runAndWait()
2、自動生成素描草圖

這個腳本可以把彩色圖片轉化為鉛筆素描草圖,對人像、景色都有很好的效果。

而且只需幾行代碼就可以一鍵生成,適合批量操作,非常的快捷。

需要的第三方庫:

Opencv - 計算機視覺工具,可以實現多元化的圖像視頻處理,有Python接口

""" Photo Sketching Using Python """
import cv2
img = cv2.imread("elon.jpg")
## Image to Gray Image
gray_image = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
## Gray Image to Inverted Gray Image
inverted_gray_image = 255-gray_image
## Blurring The Inverted Gray Image
blurred_inverted_gray_image = cv2.GaussianBlur(inverted_gray_image, (19,19),0)
## Inverting the blurred image
inverted_blurred_image = 255-blurred_inverted_gray_image
### Preparing Photo sketching
sketck = cv2.divide(gray_image, inverted_blurred_image,scale= 256.0)
cv2.imshow("Original Image",img)
cv2.imshow("Pencil Sketch", sketck)
cv2.waitKey(0)
3、自動發送多封郵件

這個腳本可以幫助我們批量定時發送郵件,郵件內容、附件也可以自定義調整,非常的實用。

相比較郵件客戶端,Python腳本的優點在于可以智能、批量、高定制化地部署郵件服務。

需要的第三方庫:

Email - 用于管理電子郵件消息

Smtlib - 向SMTP服務器發送電子郵件,它定義了一個 SMTP 客戶端會話對象,該對象可將郵件發送到互聯網上任何帶有 SMTP 或 ESMTP 監聽程序的計算機

Pandas - 用于數據分析清洗地工具

import smtplib
from email.message import EmailMessage
import pandas as pd
def send_email(remail, rsubject, rcontent):
email = EmailMessage()## Creating a object for EmailMessage
email['from'] = 'The Pythoneer Here'## Person who is sending
email['to'] = remail## Whom we are sending
email['subject'] = rsubject ## Subject of email
email.set_content(rcontent) ## content of email
with smtplib.SMTP(host='smtp.gmail.com',port=587)as smtp:
smtp.ehlo() ## server object
smtp.starttls() ## used to send data between server and client
smtp.login("deltadelta371@gmail.com","delta@371") ## login id and password of gmail
smtp.send_message(email)## Sending email
print("email send to ",remail)## Printing success message
if __name__ == '__main__':
df = pd.read_excel('list.xlsx')
length = len(df)+1
for index, item in df.iterrows():
email = item[0]
subject = item[1]
content = item[2]
send_email(email,subject,content)
4、自動化數據探索

數據探索是數據科學項目的第一步,你需要了解數據的基本信息才能進一步分析更深的價值。

一般我們會用pandas、matplotlib等工具來探索數據,但需要自己編寫大量代碼,如果想提高效率,Dtale是個不錯的選擇。

Dtale特點是用一行代碼生成自動化分析報告,它結合了Flask后端和React前端,為我們提供了一種查看和分析Pandas數據結構的簡便方法。

我們可以在Jupyter上實用Dtale。

需要的第三方庫:

Dtale - 自動生成分析報告

### Importing Seaborn Library For Some Datasets
import seaborn as sns
### Printing Inbuilt Datasets of Seaborn Library
print(sns.get_dataset_names())
### Loading Titanic Dataset
df=sns.load_dataset('titanic')
### Importing The Library
import dtale
#### Generating Quick Summary
dtale.show(df)

Python自動化腳本代碼如何寫

5、自動桌面提示

這個腳本會自動觸發windows桌面通知,提示重要事項,比如說:您已工作兩小時,該休息了

我們可以設定固定時間提示,比如隔10分鐘、1小時等

用到的第三方庫:

win10toast - 用于發送桌面通知的工具

from win10toast import ToastNotifier
import time
toaster = ToastNotifier()
header = input("What You Want Me To Remembern")
text = input("Releated Messagen")
time_min=float(input("In how many minutes?n"))
time_min = time_min * 60
print("Setting up reminder..")
time.sleep(2)
print("all set!")
time.sleep(time_min)
toaster.show_toast(f"{header}", f"{text}", duration=10, threaded=True)
while toaster.notification_active(): time.sleep(0.005)

Python自動化腳本代碼如何寫

感謝各位的閱讀,以上就是“Python自動化腳本代碼如何寫”的內容了,經過本文的學習后,相信大家對Python自動化腳本代碼如何寫這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

民权县| 禹州市| 资溪县| 阳春市| 应城市| 老河口市| 宿迁市| 芜湖县| 文安县| 江城| 东源县| 黔西| 洞头县| 白银市| 班戈县| 客服| 宜昌市| 读书| 灯塔市| 北碚区| 南开区| 定襄县| 东阿县| 巫溪县| 平乐县| 商南县| 罗平县| 陆良县| 临海市| 望都县| 吴忠市| 炉霍县| 厦门市| 买车| 永兴县| 获嘉县| 临汾市| 道孚县| 如东县| 大厂| 嫩江县|