Skip to main content

xing kuang utils

Project description

xk-utils

xk-utils存放星矿公用模块,包括邮件模块, 日志模块等

打包

python3 -m pip install --upgrade build
python3 -m build

发布

pip install --upgrade twine
python3 -m twine upload --repository pypi dist/*

安装

pip install xk-utils

使用

1、发送邮件

from xk_utils.mail import MailProducer

redis_config = {
    'host':'127.0.0.1',
    'port': 6379,
    'password': '****',
    'db': 99
}

# 定义邮件key, 在服务端需要配置相关收件人, 邮件标题
m = MailProducer(key='log', **redis_config)
m.send(f'<邮件内容>')

2、记录日志

# 记录文件日志
import os
from xk_utils.logger import get_logger

logger = get_logger('log', 'werkzeug', write_file=True, file_path=os.path.join(os.path.dirname(__file__), 'log'))
logger.info("记录文件")


# 记录可以发送邮件的日志
logger = get_logger('log', 'celery', send_mail=True,
                    host='127.0.0.1',
                    port=6379,
                    password='****',
                    db=99
)
logger.info('这是一条正常日志, 不发送邮件')
logger.error('这是一条错误日志, 发送邮件, 邮件联系人、标题,请在服务器端配置, key=<log>')

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

xk-utils-0.0.5.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

xk_utils-0.0.5-py3-none-any.whl (7.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page