主頁 > 知識(shí)庫 > python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單

python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單

熱門標(biāo)簽:手機(jī)網(wǎng)頁嵌入地圖標(biāo)注位置 開封自動(dòng)外呼系統(tǒng)怎么收費(fèi) 開封語音外呼系統(tǒng)代理商 應(yīng)電話機(jī)器人打電話違法嗎 天津電話機(jī)器人公司 河北防封卡電銷卡 電銷機(jī)器人的風(fēng)險(xiǎn) 地圖標(biāo)注線上如何操作 400電話辦理哪種

首先,那肯定是用python獲取學(xué)校發(fā)下來的未學(xué)習(xí)名單,但是我忘記我之前用什么來操作辦公軟件了(最后項(xiàng)目作出來的時(shí)候才想起來是pandas),我就上網(wǎng)搜了一下,試了很多庫但是都不支持xlsx文件格式(只支持最老版本的xls),最終openpyxl成功的讀取了xlsx文件,于是我就用了openpyxl庫來讀取文件,下面是python代碼

 studyedstudent = []
 wb = load_workbook(xlsx_path)
 sheets = wb.worksheets  # 獲取當(dāng)前所有的sheet
 sheet1 = sheets[0]
 for col in sheet1['A']:
     studyedstudent.append(col.value)

這樣studyedstudent列表中就是本期已學(xué)習(xí)的名單了

我又向團(tuán)支書要了我們班的團(tuán)員表,同樣用該方法讀出了我們班的團(tuán)員,我將他放入一個(gè)列表中,當(dāng)常量來用。

剩下的就是遍歷我們班團(tuán)員,看一下團(tuán)員是否在已學(xué)習(xí)的名單中,如果不在,則將該團(tuán)員放入另一個(gè)列表(未學(xué)習(xí)名單中)

下面是python代碼

wb = load_workbook(xlsx_path)
sheets = wb.worksheets  # 獲取當(dāng)前所有的sheet
myclassstudent = ['陳榮森', '鄧京銳', '鄧文凱', '何江偉', '何錦勝', '李春江', '李錦科', '廖金威', '廖鈞濠', '林榮添', '劉繼洪', '羅煒芊', '麥洋華', '彭浩林', '唐愛萍', '涂駿', '冼東潮', '肖華鋒', '謝澤琛', '楊?yuàn)^發(fā)', '張杰森', '鄭佳浩', '植美麟', '周天寶']
# 24團(tuán)員
# print(len(myclassstudent))
# 獲取第一張sheet
sheet1 = sheets[0]
studyedstudent = []
for col in sheet1['A']:
    studyedstudent.append(col.value)
# print(studyedstudent)
unstudyedstudent = []
for i in myclassstudent:
    if i not in studyedstudent:
        unstudyedstudent.append(i)

這樣一波操作,unstudystudent中就是要給團(tuán)支書的未學(xué)習(xí)名單了!

但是鑒于使用者可能沒有python環(huán)境,所以我決定將unstudystudent寫入一個(gè)txt文件中,并且將代碼打包成exe文件。

下面是代碼

wb = load_workbook(xlsx_path)
sheets = wb.worksheets  # 獲取當(dāng)前所有的sheet
myclassstudent = ['陳榮森', '鄧京銳', '鄧文凱', '何江偉', '何錦勝', '李春江', '李錦科', '廖金威', '廖鈞濠', '林榮添', '劉繼洪', '羅煒芊', '麥洋華', '彭浩林', '唐愛萍', '涂駿', '冼東潮', '肖華鋒', '謝澤琛', '楊?yuàn)^發(fā)', '張杰森', '鄭佳浩', '植美麟', '周天寶']
# 24團(tuán)員
# print(len(myclassstudent))
# 獲取第一張sheet
sheet1 = sheets[0]
studyedstudent = []
for col in sheet1['A']:
    studyedstudent.append(col.value)
# print(studyedstudent)
unstudyedstudent = []
for i in myclassstudent:
    if i not in studyedstudent:
        unstudyedstudent.append(i)
file = open('大學(xué)習(xí)未完成名單.txt', 'w')
for i in unstudyedstudent:
    file.write(i)
    file.write('\n')
file.close()

打包需要先下載一個(gè)打包的庫打開cmd 輸入“pip install Pyinstaller”即可,然后再cmd中進(jìn)入要打包的文件夾,輸入“Pyinstaller -F main.py”等待打包即可,main.py是我要打包的文件名字。

但是這是個(gè)小黑板使用起來不太方便,我決定做一個(gè)GUI,我就用了我最近在學(xué)的pyqt5。

首先把main文件封裝成函數(shù),下面是main.py的代碼

from openpyxl import load_workbook


def getnostudytxt(xlsx_path):
    wb = load_workbook(xlsx_path)
    sheets = wb.worksheets  # 獲取當(dāng)前所有的sheet
    myclassstudent = ['陳榮森', '鄧京銳', '鄧文凱', '何江偉', '何錦勝', '李春江', '李錦科', '廖金威', '廖鈞濠', '林榮添', '劉繼洪', '羅煒芊', '麥洋華', '彭浩林', '唐愛萍', '涂駿', '冼東潮', '肖華鋒', '謝澤琛', '楊?yuàn)^發(fā)', '張杰森', '鄭佳浩', '植美麟', '周天寶']
    # 24團(tuán)員
    # print(len(myclassstudent))
    # 獲取第一張sheet
    sheet1 = sheets[0]
    studyedstudent = []
    for col in sheet1['A']:
        studyedstudent.append(col.value)
    # print(studyedstudent)

    unstudyedstudent = []
    for i in myclassstudent:
        if i not in studyedstudent:
            unstudyedstudent.append(i)
    file = open('大學(xué)習(xí)未完成名單.txt', 'w')

    for i in unstudyedstudent:
        file.write(i)
        file.write('\n')
    file.close()
    return unstudyedstudent

接下來是寫界面,不妨命名為ui.py,下面是代碼。

import sys
from PyQt5.QtWidgets import (QWidget, QTextEdit, QFileDialog, QApplication, QHBoxLayout, QVBoxLayout, QPushButton)
from PyQt5.QtGui import QIcon
import main


class Example(QWidget):
    def __init__(self):
        super().__init__()
        self.initUI()

    def initUI(self):
        okButton = QPushButton("選擇文件")
        self.textEdit = QTextEdit()
        okButton.clicked.connect(self.showDialog)
        vvbox = QVBoxLayout()
        vvbox.addWidget(okButton)
        vvbox.addStretch(1)
        hbox = QHBoxLayout()
        hbox.addLayout(vvbox)
        hbox.addWidget(self.textEdit)
        vbox = QVBoxLayout()
        vbox.addLayout(hbox)
        self.setLayout(vbox)
        self.setGeometry(300, 300, 350, 300)
        self.setWindowTitle("青年大學(xué)習(xí)獲取未學(xué)習(xí)名單")
        self.setWindowIcon(QIcon("head.ico"))
        self.show()

    def showDialog(self):
        # 彈出文件選擇器
        fname = QFileDialog.getOpenFileName(self, "Open file")
        # 如果選擇了文件
        if fname[0]:
            # 打開第一個(gè)文件
            f = open(fname[0], "r")
            print(f.name)
            mylist = main.getnostudytxt(f.name)
            print(mylist)
            for i in mylist:
                self.textEdit.append(i)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

最后就是打包了,這次要打包的是窗口文件,所以打包的指令中要多加一個(gè)-w,而且我給打包后的文件添加了一個(gè)圖標(biāo)(head.ico),所以輸入“Pyinstaller -F -w -i head.ico ui.py”。

最終項(xiàng)目就做完了!

代碼我已經(jīng)提交到github上,如果想瞅瞅源碼可以上我的github上看看:xddno1/python_student_big_study: 青年大學(xué)習(xí)檢查未學(xué)習(xí)名單的python腳本 (github.com)

最后還有一個(gè)小bug,那就是pyqt5窗口的圖標(biāo)不展示的問題,這個(gè)有知道的大佬還請(qǐng)指出解決辦法!

以上就是python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單的詳細(xì)內(nèi)容,更多關(guān)于python 自動(dòng)化統(tǒng)計(jì)名單的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • python實(shí)現(xiàn)自動(dòng)化辦公郵件合并功能
  • Python辦公自動(dòng)化之將任意文件轉(zhuǎn)為PDF格式
  • Python辦公自動(dòng)化之教你用Python批量識(shí)別發(fā)票并錄入到Excel表格中
  • Python辦公自動(dòng)化之Excel(中)
  • 6個(gè)Python辦公黑科技,助你提升工作效率

標(biāo)簽:宿遷 常州 六盤水 蘭州 駐馬店 成都 江蘇 山東

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單》,本文關(guān)鍵詞  python,辦公自動(dòng)化,基于,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單》相關(guān)的同類信息!
  • 本頁收集關(guān)于python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章