python中自动化办公 【笔记】

00读取csv文件

import csv
def readCsv(path):infolist = []with open (path,"r") as f:allFileInfo = csv.reader(f)print(allFileInfo)for row in allFileInfo:infolist.append(row)return infolistpath =r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\2、读写csv文件\000001.csv"
info = readCsv(path)
# [[],[],[]]

01写csv文件

import csvdef writeCsv(path,data):with open(path,"w")as f:write = csv.writer(f)for rowData in data:print("*********")write.writerow(rowData)path =r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\2、读写csv文件\000003.csv"
writeCsv(path, [[1,2,3],[4,5,6],[7,8,9]])

02读取pdf文件

import sys
import importlib
importlib.reload(sys)from pdfminer.pdfparser import PDFParser, PDFDocument
from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter
from pdfminer.converter import PDFPageAggregator
from pdfminer.layout import LTTextBoxHorizontal, LAParams
from pdfminer.pdfinterp import PDFTextExtractionNotAlloweddef readPDF(path,topath):#以二进制打开pdf文件f = open(path,"rb")#创建一个PDF文档分析器parse = PDFParser(f)#创建PDF文档pdfFile = PDFDocument()#链接 分析器与文档对象 互相连接parse.set_document(pdfFile)pdfFile.set_parser(parse)#提供初始化密码pdfFile.initialize()#检测文档是否提供txt转换if not pdfFile.is_extractable:raise PDFTextExtractionNotAllowedelse:#解析数据#数据管理器manager = PDFResourceManager()#创建一个PDF设备的对象laparams= LAParams()device = PDFPageAggregator(manager,laparams=laparams)#解释器对象interpreter = PDFPageInterpreter(manager,device)#开始循环处理,每次处理一页for page in pdfFile.get_pages():interpreter.process_page(page)layout =device.get_result()for x in layout:if (isinstance(x,LTTextBoxHorizontal)):with open(topath,"a")as f:str = x.get_text()# print(str)f.write(str+"\n")topath=r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\a.txt"
path =r"D:\xiazaipan\第1章  Python语言基础\16、py2与py3的区别和测试\0-作业\文件的封装\sunck.pdf"
readPDF(path,topath)

03播放音乐

#pip install pygameimport time
import pygame#音乐路径
filePath = r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\7、播放音乐\res\0.mp3"# 初始化
pygame.mixer.init()#加载音乐
track = pygame.mixer.music.load(filePath)#播放
pygame.mixer.music.play()#
time.sleep(5)
pygame.mixer.music.pause()#暂停
#停止
pygame.mixer.music.stop()

04修改背景图片

# win键加R   ->regedit ->HKEY_CURRENT_USER->
#Control panel->Desktop->import win32api
import win32con
import win32guidef setWallPaper(path):#打开注册表reg_key = win32api.RegOpenKeyEx(win32con.HKEY_CURRENT_USER,"Control Panel\\Desktop",0,win32con.KEY_SET_VALUE)#2拉伸 0居中 6适应 10填充win32api.RegSetValueEx(reg_key,"WallpaperStyle",0,win32con.REG_SZ,"6")## win32api.RegSetValueEx(reg_key,)# win32api.RegSetValueEx(reg_key,"WallPaper" )# win32con.SPIF_SENDWININICHANGE立即生效win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER,path,win32con.SPIF_SENDWININICHANGE)# 图片地址
setWallPaper(r"")

05整蛊程序

import time
import pygame
import win32api
import win32con
import win32gui
import threadingdef go():pygame.mixer.init()while 1:for i in range(5):filePath =\r"H:\QIANfeng code\17自动化办公鼠标键盘模拟\res"+"\\"+str(i)+".mp3"track = pygame.mixer.music.load(filePath)pygame.mixer.music.play()time.sleep(10)pygame.mixer.music.stop()def setWallPaper(path):reg_key = win32api.RegOpenKeyEx(win32con.HKEY_CURRENT_USER,"Control Panel\\Desktop",0,win32con.KEY_SET_VALUE)win32api.RegSetValueEx(reg_key,"WallpaperStyle",0,win32con.REG_SZ,"6")win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER,path,win32con.SPIF_SENDWININICHANGE)
#线程
th = threading.Thread(target = go ,name ="LoopThread")
th.start()
while True:go()for i in range(9):filePath = r"H:\QIANfeng code\17自动化办公鼠标键盘模拟\res1"+"\\"+str(i)+".jpeg"print(filePath)setWallPaper(filePath)time.sleep(5)

06键盘模拟

import win32con
import win32api
import time'''
win32api.keybd_event(91,0,0,0)
time.sleep(0.1)
win32api.keybd_event(91,0,win32con.KEYEVENTF_KEYUP,0)
'''
while 1 :win32api.keybd_event(91,0,0,0)time.sleep(0.1)win32api.keybd_event(77,0,0,0)time.sleep(0.1)win32api.keybd_event(77,0,win32con.KEYEVENTF_KEYUP,0)win32api.keybd_event(91, 0, win32con.KEYEVENTF_KEYUP, 0)time.sleep(3)

07语音控制游戏

08鼠标模拟

import win32con
import win32api
import timewin32api.SetCursorPos([30,40])
time.sleep(0.1)
#鼠标左键按下
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,0,0,0)
#鼠标左键抬起 
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,0,0,0)win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,0,0,0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,0,0,0)

09读取doc与docx文件

import win32com
import win32com.clientdef readWordFile(path):#调用系统word功能,可以处理doc和 docx两种文件mw = win32com.client.Dispatch("Word.Application")#打开文件doc = mw.Documents.Open(path)for paragraph in doc.Paragraphs:line = paragraph.Range.Textprint(line)#关闭文件doc.Close()#退出文件mw.Quit()path = r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\4、word自动化办公\sunck.doc"
readWordFile(path)

10读取doc与docx文件并写入其他文件

import win32com
import win32com.clientdef readWordFile(path):mw = win32com.client.Dispatch("Word.Application")doc = mw.Documents.Open(path)#将word的数据保存到另一个文件doc.SaveAs(toPath,2)#2表示txt文件doc.Close()mw.Quit()toPath = r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\4、word自动化办公\1.txt"

11创建word文件

import win32com
import win32com.client
import osdef makeWordFile(path,name):word = win32com.client.Dispatch("Word.Application")#创建文档doc = word.Documents.Add()#文档可见word.Visible = True#写内容#从头开始写r = doc.Range(0,0)r.InsertAfter("亲爱的"+name+"\n")r.InsertAfter("想你")#存储文件doc.SaveAs(path)#关闭文件doc.Close()#退出文件# word.Quit()names = ["zhangsan","lisi","wangwu"]
for name in names:path = os.path.join(os.getcwd(),name)makeWordFile(path,name)path = r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\4、word自动化办公"

12读取xlsx文件

#xlsx xls
#openpyxl->xlsxfrom openpyxl.reader.excel import load_workbookdef readXlsxFile(path):file= load_workbook(filename = path)print(file.get_sheet_names())sheets = file.get_sheet_names()#拿出一个表格sheet = file.get_sheet_by_name(sheets[0])#最大行数print(sheet.max_row)#最大列数print(sheet.max_column)#表名print(sheet.title)for lineNum in range(1,sheet.max_row+1):print(lineNum)lineList = []for columnNum in range(1,sheet.max_column):#拿数据value = sheet.cell(row=lineNum,column = columnNum).value# if value!=None:lineList.append(value)print(lineList)path= r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\5、excel自动化办公\1.xlsx"
readXlsxFile(path)

13返回整体xlsx数据

#  xlsx   xls
# openpyxl  ->  xlsxfrom openpyxl.reader.excel import load_workbookdef readXlsxFile(path):dic = {}file = load_workbook(filename=path)sheets = file.get_sheet_names()print(len(sheets))for sheetName in sheets:sheet = file.get_sheet_by_name(sheetName)#一张表的所有数据sheetInfo = []for lineNum in range(1, sheet.max_row + 1):lineList = []for columnNum in range(1, sheet.max_column + 1):value = sheet.cell(row=lineNum, column=columnNum).valuelineList.append(value)sheetInfo.append(lineList)#将一张表的数据存到字典dic[sheetName] = sheetInforeturn dic#不能处理xls文件
path = r""
dic = readXlsxFile(path)
print(dic["安力博发"])
print(len(dic))

14返回xls和xlsx文件内容

#有序字典
from collections import OrderedDict
#读取数据
from pyexcel_xls import get_datadef readXlsAndXlsxFile(path):dic = OrderedDict()#抓取数据xdata = get_data(path)for sheet in xdata:dic[sheet]= xdata[sheet]return dicpath= r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\5、excel自动化办公\1.xlsx"
dic = readXlsAndXlsxFile(path)
print(dic)
print(len(dic))

15写入xls文件

#有序字典
from collections import OrderedDict
#读取数据
from pyexcel_xls import get_data
from pyexcel_xls import save_datadef makeExcelFile(path,data):dic = OrderedDict()for sheetName,sheetValue in data.items():d= {}d[sheetName]=sheetValuedic.update(d)save_data(path,dic)#只能写xls
path= r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\5、excel自动化办公\11.xls"
makeExcelFile(path,{"表1":[[1,2,3],[4,5,6]],"表2":[[11,22,33],[44,55,66]]})

16写ppt

import win32com
import win32com.clientdef makeppt(path):ppt = win32com.client.Dispatch("PowerPoint.Application")ppt.Visible=True#增加一个文件pptFile = ppt.Presentations.Add()#创建页  参数1为页数 参数2为主题类型page1 = pptFile.Slides.Add(1,1)#正标题副标题 就两个t1 = page1.Shapes[0].TextFrame.TextRanget1.Text = "Liuwang "t2 = page1.Shapes[1].TextFrame.TextRanget2.Text = "Liuwang is a good man  "# 第二页page2 = pptFile.Slides.Add(2, 2)t3 = page2.Shapes[0].TextFrame.TextRanget3.Text = "LiuGE "t4 = page2.Shapes[1].TextFrame.TextRanget4.Text = "LiuGE is a good man  "#保存pptFile.SaveAs(path)pptFile.Close()ppt.Quit()path = r"D:\xiazaipan\第1章  Python语言基础\15、自动化办公与鼠标键盘模拟\4、word自动化办公"
makeppt(path)

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/456934.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python爬虫:一些常用的爬虫技巧总结

1、基本抓取网页 get方法 import urllib2 url "http://www.baidu.com" respons urllib2.urlopen(url) print response.read() post方法 import urllib import urllib2url "http://abcde.com" form {name:abc,password:1234} form_data urllib.urlenco…

微型计算机选用要点,微型计算机原理以及应用考试_new要点分析.doc

微型计算机原理以及应用第一章:1.微机的主要的特点是:(1)体积小、重量轻;(2)价格低廉;(3)可靠性高、结构灵活(4)应用面广2.微型机的分类:按微处理器规模分类:单片机 、个人计算机、 …

到底什么是API经济

编者按:这是一篇两年前的文章,作者为原CA TECH的中国区技术总监。他在文章中阐述的问题,今天读来依旧让人振聋发聩。但遗憾的是,国人在API成为一种服务的概念上似乎还停留在遥远的PC时代,说白了还都只是一些低端的数据…

解决Linux下vi或vim操作Found a swap file by the name

在linux下用vi或vim打开 文件时 E325: ATTENTION Found a swap file by the name ".1.py.swp" owned by: liu dated: Sat Apr 20 17:37:19 2019 file name: ~liu/1.py modified: YES user name: liu host name: localhos…

给未来的自己一封信计算机,给未来的自己的一封信范文(精选5篇)

给未来的自己的一封信范文(精选5篇)在日常生活或是工作学习中,大家总免不了要接触或使用书信吧,书信一般包括称呼、问候语、正文、祝语、署名、日期六个部分。你知道书信怎样写才规范吗?下面是小编为大家收集的给未来的自己的一封信范文(精选…

matlab神经网络函数

1.设计函数 solvein 设计线性网络; solverb 设计径向基网络; solverbe 设计精确的径向基网络; solvehop 设计Hopfield网络。 2.传递函数 hardlim 硬限幅传递函数; hardl…

GBDT算法简介

在网上看到一篇GBDT介绍非常好的文章,GBDT大概是非常好用又非常好用的算法之一了吧(哈哈 两个好的意思不一样) GBDT(Gradient Boosting Decision Tree) 又叫 MART(Multiple Additive Regression Tree),是一种迭代的决策树算法,该算…

DevExpress Chart空间Y轴归一化(线性归一化函数)

数据的标准化(normalization)是将数据按比例缩放,使之落入一个小的特定区间。在某些比较和评价的指标处理中经常会用到,去除数据的单位限制,将其转化为无量纲的纯数值,便于不同单位或量级的指标能够进行比较…

Linux samba的配置和使用

推荐局域网内使用 不推荐远程服务器 一、安装Samba服务 yum -y install samba # 查看yum源中Samba版本 yum list | grep samba # 查看samba的安装情况 rpm -qa | grep samba Samba服务器安装完之后, 会生成配置文件目录/etc/samba, /etc/samba/smb.conf是samba的核心配置文件.…

23期PHP基础班第四天

转载于:https://www.cnblogs.com/lihang666/p/6078982.html

SVM和SVR简介

1、支持向量机( SVM )是一种比较好的实现了结构风险最小化思想的方法。它的机器学习策略是结构风险最小化原则 为了最小化期望风险,应同时最小化经验风险和置信范围) 支持向量机方法的基本思想: ( 1 &#…

gojs实现最短路径寻址实例

2019独角兽企业重金招聘Python工程师标准>>> JS function init() {if (window.goSamples) goSamples(); // init for these samples -- you dont need to call thisvar $ go.GraphObject.make; // for conciseness in defining templatesmyDiagram $(go.Diagram,…

河南王牌计算机专业,河南计算机专业实力突出的7所大学,郑大位列次席,榜首实至名归...

郑州大学是省内唯一的211建设高校,整体办学实力在国内同类高校之中名列前茅,虽然没有能够在学科评估之中取得A类学科,但学校有化学、考古学、材料科学与工程等多个学科获评B,学校计算机科学与技术学科取得了C的成绩,虽…

Linux中配置ftp服务器

1. 先用rpm -qa| grep vsftpd命令检查是否已经安装,如果ftp没有安装,使用yum -y install vsftpd 安装,(ubuntu 下使用apt-get install vsftpd) 2. service vsftpd start / service vsftpd restart 启动要让FTP每次开机自动启动,运行命令:…

机器学习中各类算法的优缺点比较

1决策树(Decision Trees)的优缺点 决策树的优点: 一、 决策树易于理解和解释.人们在通过解释后都有能力去理解决策树所表达的意义。 二、 对于决策树,数据的准备往往是简单或者是不必要的.其他的技术往往要求先把数据一般化&am…

在程序开发中日志级别

日志打印可以查看代码的执行情况,以及快速定位错误。 在代码中,特别是业务层逻辑的代码,适当的添加日志是必须的,一般在catch代码块中是出现异常的,如果需要打印 可以用error级别, 一般的无关紧要的日志&am…

基于Python搭建Django后台管理系统

一、博客网站的创建 创建项目 生成站点(sites)Model,这两步骤第一篇有介绍,这里就直接操作了 二、数据库配置 介绍一下数据库的配置就是在setting里面配置链接的数据库,这里系统以及配置好了,链接一个…

计算机研究所专业课,【择校必看】十三所计算机专业课只考数据结构的985院校!...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼敲黑板:本文涉及到的学校计算机专业考研只考数据结构,其中部分院校同时也会考算法、C语言等相关内容。但是,相对其他几门,无疑在专业课的复习上大大降低了难度。如果各位同学目前的专…

在Python2.7下如何安装TA-lib库

最近在做一个关于股票预测的模型,由于想要用Talib库中的方法,来提取各种金融技术指标,所以就下了这个库。但整个过程可谓是一波三折。花费了大半天才搞定这件事。 下面来给大家分享一下安装的步骤,省的大家再往这个坑里跳。。。 …

JavaScript 实现继承的5种方式

js是一个面向对象的语言,所以具备一些面向对象的方式----------例如继承。接下来介绍5种js的继承方式.注意:js 中的函数其实是对象,函数名是对 Function 对象的引用。 1.采用call方法改变函数上下文实现继承,原理是改变函数内部的…