-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ll
committed
Aug 10, 2021
1 parent
0d3decd
commit abfc625
Showing
4 changed files
with
64 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
from pyefun.processPoolUtil import * | ||
from pyefun import * | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,47 @@ | ||
from pyefun.arithmeticOperationBase import * # 算数运算 | ||
from pyefun.arrayActionBase import * # 数组操作 | ||
# from pyefun.codeConv import * # 编码转换 | ||
from pyefun.dirkBase import * # 磁盘操作 | ||
from pyefun.public import * # 公用模块 | ||
from pyefun.stringBase import * # 文本操作 | ||
from pyefun.systemProcessingBase import * # 系统处理 | ||
from pyefun.timeBase import * # 日期时间操作 | ||
from pyefun.typeConv import * # 类型转换 | ||
from pyefun.practical import * # 一些实用的函数 | ||
# ========== 核心支持库命令 ========== | ||
from pyefun.arithmeticOperationBase import * # 算数运算 | ||
from pyefun.arrayActionBase import * # 数组操作 | ||
from pyefun.codeConv import * # 编码转换 | ||
from pyefun.dirkBase import * # 磁盘操作 | ||
from pyefun.public import * # 公用模块 | ||
from pyefun.stringBase import * # 文本操作 | ||
from pyefun.systemProcessingBase import * # 系统处理 | ||
from pyefun.timeBase import * # 日期时间操作 | ||
from pyefun.typeConv import * # 类型转换 | ||
# ========== 核心支持库命令 ========== | ||
|
||
from pyefun.practical import * # 一些实用的函数 | ||
# from pyefun.cacheUtil import * # 缓存工具 | ||
# from pyefun.commonlyUtil import * # 实用函数 | ||
# from pyefun.commonlyUtil import * # ubelt 封装的实用函数 | ||
# from pyefun.progiterUtil import * # 进度显示 | ||
from pyefun.stringUtil import * # 文本操作实用函数 | ||
from pyefun.timeUtil import * # 时间工具类 | ||
from pyefun.stringUtil import * # 文本操作实用函数 | ||
from pyefun.timeUtil import * # 时间工具类 | ||
|
||
# from pyefun.regexpUtil import * # 正则表达式 | ||
|
||
from pyefun.threadingUtil import * # 线程操作有线程池 | ||
from pyefun.processPoolUtil import * # 进程池使用方法 | ||
from pyefun.threadingUtil import * # 线程操作有线程池 | ||
from pyefun.processPoolUtil import * # 进程池使用方法 | ||
# from pyefun.asyncPool.asyncPool import * # 原生协程池 | ||
# from pyefun.asyncPoolGevent.asyncPoolGevent import * * # Gevent协程池 | ||
from pyefun.networkUtil import * | ||
# from pyefun.configUtil import * # 配置项 | ||
# from pyefun.configEnvUtil import * # 环境变量 | ||
from pyefun.clockUtil import * # 时钟 | ||
from pyefun.clockUtil import * # 时钟 | ||
|
||
# from pyefun.encoding.compress.egzip import * | ||
# from pyefun.encoding.compress.ezlib import * | ||
# from pyefun.encoding.compress.zip import * | ||
# from pyefun.encoding.ebinary.binary import * | ||
# from pyefun.encoding.ebase64.ebase64 import * | ||
# from pyefun.encoding.url.url import * | ||
# from pyefun.encoding.compress.egzip import * # gzip 解压缩 | ||
# from pyefun.encoding.compress.ezlib import * # zlib 解压缩 | ||
# from pyefun.encoding.compress.zip import * # zip 解压缩 | ||
# from pyefun.encoding.ebinary.binary import * # 二进制 编码解码 | ||
# from pyefun.encoding.ebase64.ebase64 import * # base64 编码解码 | ||
# from pyefun.encoding.url.url import * # URL 编码解码 | ||
|
||
__version__ = '1.0.28' | ||
# from pyefun.javscript import * # 执行js脚本 | ||
# from pyefun.qrcode import * # 二维码解析 | ||
|
||
# from pyefun.excel.excel_xlwr import * # excel操作模块 选其中一个使用即可 | ||
# from pyefun.excel.excel_openpyxl import * # excel操作模块 选其中一个使用即可 | ||
|
||
# from pyefun.seleniumUtil import * # 浏览器自动化测试 | ||
|
||
|
||
__version__ = '1.0.29' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters