私有的log以及log的oss上传包
Project description
dlog
dlog 是一个用于日志记录和上传到阿里云OSS的私有Python包。它提供了日志记录功能,以及将日志文件压缩并上传到阿里云OSS的功能,非常适合在私有项目中使用。
功能特点
- 日志记录: 支持将日志记录到本地文件,支持多级别日志(DEBUG、INFO、ERROR、SYSTEM)。
- 日志上传: 自动将日志文件压缩为zip格式,并上传到阿里云OSS。
- 单例模式: 采用单例模式确保日志处理类只会被实例化一次。
安装
由于该包是私有的,你需要从 Git 仓库安装:
安装教程
-
在
requirements.txt中添加以下内容:git+https://gitee.com/didi_nj/dilog.git@master#egg=dlog
-
运行以下命令安装依赖:
pip install -r requirements.txt
或者直接使用 pip 从 Git 仓库安装:
pip install git+https://gitee.com/didi_nj/dilog.git@master#egg=dlog
使用说明
记录日志
from dilog.log_handler import LogHandler
# 获取日志处理器实例
log_handler = LogHandler.get_instance()
# 记录日志
log_handler.report(tag="Initialization", content="LogHandler initialized successfully", level="INFO")
上传日志文件
import os
from dilog.log_handler import handle_error_feedback
# 确保环境变量已设置
os.environ['ALI_ACCESS_KEY_ID'] = 'your_access_key_id'
os.environ['ALI_ACCESS_KEY_SECRET'] = 'your_access_key_secret'
os.environ['ALI_OSS_ENDPOINT'] = 'ALI_OSS_ENDPOINT'
os.environ['ALI_BUCKET_NAME'] = 'ALI_BUCKET_NAME'
# 调用日志处理功能
handle_error_feedback()
联系我们:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dilog-0.1.2.tar.gz
(4.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
dilog-0.1.2-py3-none-any.whl
(7.2 kB
view details)
File details
Details for the file dilog-0.1.2.tar.gz.
File metadata
- Download URL: dilog-0.1.2.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
212eca8513c4ee6c9b5b35c625fedbfbd4dbbf8383c60d56d0c8c9aea4cc8dc0
|
|
| MD5 |
1dbe5c38d3e154ad0236fa2910c72330
|
|
| BLAKE2b-256 |
cdc6c33c684bcda119f7f7ddbeba58637155a95bca78ffcc474a53a371bfbb79
|
File details
Details for the file dilog-0.1.2-py3-none-any.whl.
File metadata
- Download URL: dilog-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
865af2982fab2ef605d3d0245714742d5a0203dc87933f7f7ead2e1395c8049b
|
|
| MD5 |
d7ea8700e486930f00e7bc664060acb3
|
|
| BLAKE2b-256 |
a41d134b81ff0a491b6cceb168543397abe42e635ed9999eeacacac740df13a7
|