Metadata-Version: 2.1
Name: spiderx
Version: 1.10.94
Summary: 爬虫函数集 爬虫工具类
Home-page: https://pypi.org/project/spiderx/
Author: wgnms
Author-email: wgnms@qq.com
License: https://pypi.org/project/spiderx/
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.25.0)
Requires-Dist: lxml (>=4.6.0)
Requires-Dist: colorama (>=0.4.0)
Requires-Dist: pycryptodome (>=3.10.0)
Requires-Dist: js2py (>=0.71)
Requires-Dist: pyexecjs (>=1.5.1)
Requires-Dist: psutil (>=5.9.0)
Requires-Dist: loguru (>=0.6.0)
Requires-Dist: jsonpath (>=0.82)
Requires-Dist: pyserial (>=3.5)
Requires-Dist: rsa (>=4.7.0)
Provides-Extra: all
Requires-Dist: pillow (>=8.3.1) ; extra == 'all'
Requires-Dist: qrcode (>=7.3.1) ; extra == 'all'
Requires-Dist: pyzbar (>=0.1.9) ; extra == 'all'
Requires-Dist: uncurl (>=0.0.11) ; extra == 'all'
Requires-Dist: pymysql (>=1.0.2) ; extra == 'all'
Requires-Dist: openpyxl (>=3.0.7) ; extra == 'all'
Requires-Dist: pyinstaller (>=4.5.0) ; extra == 'all'
Requires-Dist: wmi (>1.5.0) ; extra == 'all'
Requires-Dist: ntplib (>=0.3.3) ; extra == 'all'
Requires-Dist: xlrd (>=2.0.1) ; extra == 'all'
Requires-Dist: chardet (<5.0.0,>=4.0.0) ; extra == 'all'
Requires-Dist: pyarmor ; extra == 'all'
Requires-Dist: websockets (>=9.1) ; extra == 'all'

## 使用SpiderX模块

*1. 在IDE中安装汉化和拼音插件*  
*2. 导入模块并调用函数。*


如：
```python
#安装教程
#更新pip
#python -m pip install --upgrade pip
#pip config set global.index-url --site https://pypi.tuna.tsinghua.edu.cn/simple
#自动安装依赖库
#pip install spiderx  
#自动安装可选依赖库
#pip install spiderx[all]
from spiderx import sx

# 获取本地IP地址
print(sx.获取_IP信息())

# 保存JSON文件
a = {'a': 1, 'b': 2, 'c': 3}
sx.保存JSON('a.json', a)

# 加载JSON文件
b = sx.加载JSON('a.json')

# 打印JSON文件
sx.打印_JSON(b)


