Metadata-Version: 2.4
Name: pyhtool
Version: 0.1.1
Summary: Pyhtool lets Python control the mouse and keyboard, and other GUI automation tasks. For Windows, macOS, and Linux
Home-page: https://github.com/nydia/pyhtool
Author: nydia
Author-email: nydia_lhq@hotmail.com
License: BSD
Keywords: gui automation test testing keyboard mouse cursor click press keystroke control
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyobjc-core; platform_system == "Darwin"
Requires-Dist: pyobjc; platform_system == "Darwin"
Requires-Dist: python3-Xlib; platform_system == "Linux" and python_version >= "3.0"
Requires-Dist: python-xlib; platform_system == "Linux" and python_version < "3.0"
Requires-Dist: pymsgbox
Requires-Dist: pytweening>=1.0.4
Requires-Dist: pyscreeze>=0.1.21
Requires-Dist: pygetwindow>=0.0.5
Requires-Dist: mouseinfo
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# pyhtool

## 📚简介
pyhtool是一个小而全的Python工具类库，借鉴Java的[Hutool](https://github.com/dromara/hutool) <br /><br />
pyhtool中的工具方法来自每个用户的精雕细琢，它涵盖了Python开发底层代码中的方方面面，它既是大型项目开发中解决小问题的利器，也是小型项目中的效率担当<br /><br />
pyhtool是项目中“util”包友好的替代，它节省了开发人员对项目中公用类和公用工具方法的封装时间，使开发专注于业务，同时可以最大限度的避免封装不完善带来的bug<br />

### 🍺pyhtool如何改变我们的coding方式
pyhtool的目标是使用一个工具方法代替一段复杂代码，从而最大限度的避免“复制粘贴”代码的问题，彻底改变我们写代码的方式。
以截图为例：
- 👴【以前】打开搜索引擎 -> 搜“Python 截图” -> 打开某篇博客-> 复制粘贴 -> 改改好用
- 👦【现在】引入pyhtool  -> gui.screenshot('test.png')
pyhtool的存在就是为了减少代码搜索成本，避免网络上参差不齐的代码出现导致的bug。
-------------------------------------------------------------------------------

## 🛠️包含组件
| 模块                    | 介绍                               |
|-----------------------|----------------------------------|
| pyhtool.core         | 核心，包括文件处理、数据转换、日期、各种Util等        |
| pyhtool.gui          | 自动化库，包含按键、鼠标、截图的操作等              |
| pyhtool.system       | 获取系统相关信息，如显示器数量，当前窗口标题，系统运行的应用信息 |
| pyhtool.crypto       | 加密解密模块，提供对称、非对称和摘要算法封装           |
| pyhtool.blockchain   | 区块链相关类库封装                        |
