Metadata-Version: 2.1
Name: nlpertools
Version: 1.0.4
Summary: A small package about small basic IO operation when coding
Home-page: https://github.com/lvzii/nlpertools
Author: youshuJi
Author-email: zjs20001205@gmail.com
Project-URL: Bug Tracker, https://github.com/lvzii/nlpertools/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# 当前版本
1.0.4

# 说明
这是一些NLP/数据工作人员常用的函数组成的包，可以简化一些读写操作，使代码更加可读。主要包括两个部分：基本的读写工具和机器学习/深度学习工作中常用的数据处理函数。
```bash
io # 基本的读写工具。包括了文件读写、文件夹读写、数据读写、词频统计等功能。
  dir # 文件夹读写
  file  # 文件读写
  other # 其他
ml # 机器学习/深度学习工作中常用的数据处理函数。包括划分十折交叉数据、常见json格式数据读取等功能。
openApi # 网络开源接口
plugin  # 常用插件
reminder  # 提示
```

## Emample

```python
import nlpertools

res = nlpertools.readtxt_list_all_strip('res.txt')
res = nlpertools.baseio.FILEIO.readtxt_list_all_strip('res.txt')
most, less_has_raw_line_info = src.nlpertools.baseml.split_5_percent(res)
```


