base common lib for python
Project description
base_common_lib
常用的基础通用Lib集合
快速入门
安装
pip install baselib
【模块】log
- 创建日志文件
from baselib.log import file_logger
# 生成 logger 对象,默认自定义了日期格式,以及按天做日志分割
logger = file_logger("文件路径+名称")
logger.info("info msg")
logger.debug("debug msg")
【模块】json
- json文件读写,更新
from baselib.json import JsonFile
# 获取json格式文件,当读取异常时返回空的dict
data = JsonFile.read("文件路径+名称")
# 写入json格式文件
JsonFile.write("文件路径+名称", data)
# 直接更新文件,不需要先调用read
JsonFile.update("文件路径+名称", {"1": 2})
【模块】time
- 日期段计算 period (简化datetime的调用)
from baselib.time import Period
# 获取近一个小时的起止时间
start_time, end_time = Period.get_recent_hour(1)
# 获取当前时间
now = Period.now()
# 将当前时间转换格式
now_str = Period.formate_datetime(now)
【模块】system
- 执行系统命令,并获取返回结果,可以设置是否后台执行,超时时间
from baselib import system
# 执行命令行命令
system.run_cmd("pwd")
# 可以设置是否后台执行,超时时间等
system.run_cmd("ping 8.8.8.8", deamon=False, timeout=2)
- 创建目录(多级目录,安全创建),不存在时创建,存在时跳过,不会报错
from baselib import system
system.mkdirs("/xxx/yyy/zzz")
- 检查文件是否存在
from baselib import system
system.check_file("xxxx/xxx")
# 返回检查结果: File, Directory, NotExists
【模块】qywx
- 发送企业微信机器人消息
from baselib.qywx import QyWechat
key = "xxxxxxx" # robot key
robot = QyWechat(key=key, is_ssl=True, debug=True)
robot.send_markdown(
msg="# Hello world\n> msg from robot",
page_type=robot.EnumPageType.SPLIT_BY_LINES
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
baselib-1.1.0.2.tar.gz
(31.2 kB
view hashes)