赞
踩
本篇文章给大家谈谈python自动化运维需要掌握的技能,以及python自动化运维快速入门 pdf,希望对各位有所帮助,不要忘了收藏本站喔。
Source code download: 本文相关源码
大家好,本文将围绕python自动化运维需要掌握的技能展开说明,python自动化运维常用模块是一个很多人都想弄明白的事情,想搞清楚python 自动化运维框架需要先了解以下几个事情。
之前一直使用Autoit3 来实现Windows下的运维及软件安装自动化,但是随着python的普及以及使用Linux的用户群越来越多,Windows下的Autoit3已经有些跟不上时代了,在学习Python的过程中也正巧发现了好几个自动化的python模块可以实现与Aotoit3相同的功能python创意编程比赛作品。
Pyautogui 可以用Python脚本来控制鼠标和键盘,自动执行应用程序并进行交互工作python基础知识重点。它的API设计非常简单,可在Windows,macOS和Linux上运行,并支持Python 2和3,不依赖任何模块可以直接安装使用。
安装:
pip install pyautogui
相关连接:
Welcome to PyAutoGUI’s documentation! — PyAutoGUI documentation
GitHub - asweigart/pyautogui: A cross-platform GUI automation Python module for human beings. Used to programmatically control the mouse & keyboard.
pyautoit 依赖 autoit.dll
实现autoit的各种自动化功能
安装:
pip install -U pyautoit
例子:
- #打开记事本
- #在记事本中输入“ hello world”
- #关闭记事本而不保存
-
- import autoit
-
- autoit.run("notepad.exe")
- autoit.win_wait_active("[CLASS:Notepad]", 3)
- autoit.control_send("[CLASS:Notepad]", "Edit1", "hello world{!}")
- autoit.win_close("[CLASS:Notepad]")
- autoit.control_click("[Class:#32770]", "Button2")
相关连接:
PyAutoIt · PyPI
GitHub - jacexh/pyautoit: Python binding for AutoItX3.dll
pywinauto 依赖 pywin32模块,需要先安装pywin32模块
安装:
- pip install pywin32
- pip install pywinauto
相关连接:
http://pywinauto.github.io/docs/
GitHub - pywinauto/pywinauto: Windows GUI Automation with Python (based on text properties)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。