codosdk 1.0.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,50 @@
1
+ ## 安装
2
+
3
+ ### python3安装
4
+
5
+ [python链接](https://www.python.org/)
6
+
7
+ ##### python3.9以上
8
+
9
+ ##### SDK 安装
10
+
11
+ ```bash
12
+ $ pip3 install -U git+https://github.com/ss1917/ops_sdk.git
13
+ ```
14
+
15
+ ## 结构
16
+
17
+ ```shell
18
+ .
19
+ ├── README.md 项目readme
20
+ └── opssdk
21
+ ├── logs 日志模块
22
+ ├── install 安装模块
23
+ ├── get_info 配置获取
24
+ └── operate 运维操作
25
+ ├── check 系统参数检查和获取
26
+ ├── mysql mysql 操作
27
+ ├── mail 发送邮件
28
+ └── centralization 集中化管理工具 salt
29
+ └── websdk2 web开发使用
30
+ ├── application.py tornado application
31
+ ├── base_handler.py tornado 基类
32
+ ├── cache.py 处理redis缓存
33
+ ├── configs.py 配置文件管理
34
+ ├── consts.py 常量
35
+ ├── db_context.py MySQL 处理类
36
+ ├── error.py 异常
37
+ ├── fetch_coroutine.py
38
+ ├── __init__.py
39
+ ├── jwt_token.py jwt
40
+ ├── mqhelper.py MQ 处理类
41
+ ├── program.py
42
+ ├── salt_api.py salt 处理类 可以移到工具类
43
+ ├── sms.py 发送短信 可以移到工具类
44
+ ├── tools.py 工具类
45
+ └── web_logs.py 日志处理
46
+ ```
47
+
48
+ ## License
49
+
50
+ Everything is [GPL v3.0](https://www.gnu.org/licenses/gpl-3.0.html).