Metadata-Version: 2.1
Name: hzon_tools
Version: 0.0.5
Summary: 勇哥python工具包
Author: 勇哥的ID
Author-email: 
Keywords: python,hzon_tools,hzon,spider,windows,mac,linux
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: DBUtils
Requires-Dist: feapder
Requires-Dist: loguru
Requires-Dist: lxml
Requires-Dist: openpyxl
Requires-Dist: pandas
Requires-Dist: prettytable
Requires-Dist: pymongo
Requires-Dist: PyMySQL
Requires-Dist: pywin32
Requires-Dist: redis
Requires-Dist: Requests
Requires-Dist: six
Requires-Dist: tqdm
Requires-Dist: w3lib


# hzon-tools



[![Downloads](https://static.pepy.tech/badge/dumb-menu)](https://pepy.tech/project/dumb-menu)



日常工作的时候我们总是会写一些重复的工具函数



包含**后端**，**数据处理**，**爬虫**等等使用python处理的场景



我会将一些工作中常用的文档以及demo也总结金来，方便沟通的查阅



zhon-tools是一个轻量级的python工具包，适用的平台包括**Windows**, **MacOS**, and **Linux**.





## Installation



```

pip install hzon_tools

```



https://pypi.org/project/hzon-tools/



https://github.com/ouyangguoyong/hzon-tool (I want stars ⭐ uwu)





## Usage



example:



```python

from hzon_tools import get_random_file_name



file_name = get_random_file_name()



```





## Update log

- `0.0.5` 添加mongo，redis,mysql处理逻辑

- `0.0.4` 修改包的调用，变得更灵活，可以直接从主包中调用任意一个子包的方法

- `0.0.3` 完善readme

- `0.0.2` 封装feapder,小菜,和自己的mc包的项目

- `0.0.1` 创建项目



## how to upload a new version (for me)



en: https://packaging.python.org/tutorials/packaging-projects/ 



zh: https://python-packaging-zh.readthedocs.io/zh_CN/latest/minimal.html#id2



> make sure have twine installed first



1. change `setup.py`

2. testing `python setup.py develop`

3. `python3 setup.py sdist`

4. `twine upload dist/*`



