Metadata-Version: 2.1
Name: gitopenlib
Version: 0.2.28.21
Summary: A library containing some useful functions. Powered by GitOPEN.
Home-page: https://github.com/opengit/gitopenlib.git
Author: gitopen
Author-email: gitopen@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: tqdm
Requires-Dist: psutil
Requires-Dist: emoji
Requires-Dist: jieba
Requires-Dist: matplotlib
Requires-Dist: pymongo
Requires-Dist: scipy
Requires-Dist: seaborn
Requires-Dist: fake-useragent


# GitOPENLib

This library contains Python code snippets THAT I often use.

If you need it, you can install it with the `pip install gitopenlib` command.

**May goodness live on forever.**

Powered by GitOPEN.


**整个模块的功能**

点击文件名可以查看源代码以及相关注释。   

.   
├── gitopenlib    
│   ├── **helpers**：帮助类的模块。     
│   │   ├── [mongo.py](./gitopenlib/helpers/mongo.py)：MongoDB操作相关函数。     
│   │   └── [networks.py](./gitopenlib/helpers/networks.py)：网络操作相关函数。    
│   ├── **indicators**：指标类的模块。    
│   │   ├── [diversity.py](./gitopenlib/indicators/diversity.py)：多样性指标相关函数。    
│   │   ├── [entropy_weight_method.py](./gitopenlib/indicators/entropy_weight_method.py)：熵值法计算权重。    
│   │   └── [statistics.py](./gitopenlib/indicators/statistics.py)：统计分析相关函数。    
│   ├── libs.py    
│   └── **utils**：工具类的模块。       
│   │   ├── [ai.py](./gitopenlib/utils/ai.py)：混淆矩阵、分类报告等封装。    
│   │   ├── [basics.py](./gitopenlib/utils/basics.py)：基本工具函数。    
│   │   ├── [clazz.py](./gitopenlib/utils/clazz.py)：特殊的类。     
│   │   ├── [comatrix.py](./gitopenlib/utils/comatrix.py)：共现矩阵的相关函数。    
│   │   ├── [crawler.py](./gitopenlib/utils/crawler.py)：爬虫相关函数。     
│   │   ├── [debuger.py](./gitopenlib/utils/debuger.py)：调试工具函数。      
│   │   ├── [files.py](./gitopenlib/utils/files.py)：文件操作、保存、读取等相关函数。     
│   │   ├── [get_ip.py](./gitopenlib/utils/get_ip.py)：获取IP地址相关函数。      
│   │   ├── [k_cluster.py](./gitopenlib/utils/k_cluster.py)：k-means聚类相关函数。      
│   │   ├── [nlp.py](./gitopenlib/utils/nlp.py)：NLP预处理的一下相关函数、结巴分析的优化。      
│   │   ├── [others.py](./gitopenlib/utils/others.py)：其他一些函数，任务完成自动通知相关函数。     
│   │   ├── [parser.py](./gitopenlib/utils/parser.py)：结构化数据解析器相关函数。     
│   │   ├── [plot.py](./gitopenlib/utils/plot.py)：画图的一些函数的封装，包括热力图、图例的更改等等。     
│   │   ├── [sorts.py](./gitopenlib/utils/sorts.py)：排序算法相关函数，包括冒泡排序、桶排序、堆排序等等的Python实现。     
│   │   └── [wonders.py](./gitopenlib/utils/wonders.py)：各种高级有趣的函数，包含多进程执行等等。     
├────────────────────────────────



