<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
上班族經常會遇到這樣情況,著急下班結果將關機誤點成重啟,或者臨近下班又通知開會,開完會已經遲了還要去給電腦關機。
今天使用PyQt5做了個自動關機的小工具,設定好關機時間然後直接提交即可,下班就可以直接走人了。
有直接需要.exe可執行應用的話,直接到文末處獲取下載連結!
自動關機小工具也支援了清除已經設定好的關機時間,防止已經設定好了關機時間重新調整時不知道怎麼調整。
本應用除了使用os的python標準庫來設定關機,還引入了PyQt5的桌面應用框架,通過實現自動設定關機命令以及清除操作來完成。
# Importing the QThread, QDateTime, and pyqtSignal classes from the PyQt5.QtCore module. from PyQt5.QtCore import QThread, QDateTime, pyqtSignal # Importing the QIcon and QFont classes from the PyQt5.QtGui module. from PyQt5.QtGui import QIcon, QFont # Importing the QWidget, QLabel, QDateTimeEdit, QPushButton, QFormLayout, and QApplication classes from the # PyQt5.QtWidgets module. from PyQt5.QtWidgets import QWidget, QLabel, QDateTimeEdit, QPushButton, QFormLayout, QApplication # Importing the os, sys, and time modules. import os, sys, time # Importing the images.py file. import images
建立CloseCompUI的class類,用來實現自動關機應用的頁面佈局,將UI相關以及對應的槽函數寫到這個類中。
# This class is a widget that contains a button and a text box. When the button is clicked, the text box is filled with # the closest company name to the one entered class CloseCompUI(QWidget): def __init__(self): """ A constructor. It is called when an object is created from a class and it allows the class to initialize the attributes of a class. """ super(CloseCompUI, self).__init__() self.init_ui() def init_ui(self): """ This function initializes the UI. """ self.setWindowTitle('自動關機小工具 公眾號:Python 集中營') self.setWindowIcon(QIcon(':/comp.ico')) self.setFixedWidth(380) self.setFixedHeight(120) self.is_close = False self.shutdown_time_lab = QLabel() self.shutdown_time_lab.setText('設定關機時間:') self.shutdown_time_in = QDateTimeEdit(QDateTime.currentDateTime()) self.shutdown_time_in.setDisplayFormat('yyyy-MM-dd HH:mm:ss') self.shutdown_time_in.setCalendarPopup(True) self.submit_btn = QPushButton() self.submit_btn.setText('提交關機') self.submit_btn.clicked.connect(self.submit_btn_click) self.clear_btn = QPushButton() self.clear_btn.setText('清除關機') self.clear_btn.clicked.connect(self.clear_btn_click) self.show_message_lab = QLabel() self.show_message_lab.setText('更多免費小工具原始碼獲取請前往公眾號:Python 集中營!') self.show_message_lab.setFont(QFont('黑體', 8)) fbox = QFormLayout() fbox.addRow(self.shutdown_time_lab, self.shutdown_time_in) fbox.setSpacing(15) fbox.addRow(self.clear_btn, self.submit_btn) fbox.addRow(self.show_message_lab) self.thread_ = CloseCompThread(self) self.thread_.message.connect(self.show_message_lab_click) self.setLayout(fbox)
上面的就是已經設定好的介面佈局及需要的元件資訊,然後將元件資訊以及號誌關聯到槽函數上實現相應的動態操作。
下面是所有相關的槽函數,同樣這些槽函數是放在CloseCompUI的class中的。
def show_message_lab_click(self, message): self.show_message_lab.setText(message + ',公眾號:Python 集中營!') def submit_btn_click(self): if self.shutdown_time_in.text(): self.is_close = True self.thread_.start() else: self.show_message_lab_click('請先設定關機時間') def clear_btn_click(self): self.is_close = False self.thread_.start()
建立CloseCompThread的class類,作為單獨的子執行緒獨立執行不影響主執行緒的執行,將所有的業務模組(具體的關機實現)寫到該執行緒中。
# This class is a QThread that runs a function that takes a list of strings and returns a list of strings class CloseCompThread(QThread): message = pyqtSignal(str) def __init__(self, parent=None): """ A constructor that initializes the class. :param parent: The parent widget """ super(CloseCompThread, self).__init__(parent) self.parent = parent self.working = True def __del__(self): """ If the shutdown time is set, the shutdown thread is started, otherwise the message is displayed """ self.working = False self.wait() def run(self): """ *|CURSOR_MARCADOR|* """ try: is_close = self.parent.is_close print(is_close) if is_close is True: shutdown_time_in = self.parent.shutdown_time_in.text() t = time.strptime(shutdown_time_in, "%Y-%m-%d %H:%M:%S") t1 = int(time.mktime(t)) t0 = int(time.time()) num = t1 - t0 if num > 0: os.system('shutdown -s -t %d' % num) self.message.emit("此電腦將在%s關機" % shutdown_time_in) else: self.message.emit("關機時間不能小於當前作業系統時間") else: os.system('shutdown -a') self.message.emit("已經清除自動關機設定") except: self.message.emit("提交/清除自動關機出現錯誤")
開發子執行緒CloseCompThread的業務實現後基本上已經大功告成了,接下來使用main函數直接整個桌面啟動就OK了。
# A common idiom in Python to use this to guard the main body of your code. if __name__ == '__main__': app = QApplication(sys.argv) main = CloseCompUI() main.show() sys.exit(app.exec_())
上述自動關機小工具應用中所有的程式碼塊已經過測試,可以直接啟動使用。應用中只使用了一個PyQt5的python非標準庫需要安裝,其他的不需要安裝。
到此這篇關於基於Python實現自動關機小工具的文章就介紹到這了,更多相關Python自動關機內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45