Skip to main content

A collection of Python integrations and utilities (Feishu, Dida365, VictoriaMetrics, ...)

Project description

PytBox

PyPI version Python version License: MIT

一个集成了多种服务和实用工具的 Python 包,专为运维开发场景设计。包含 VictoriaMetrics、滴答清单(Dida365)、飞书等服务的集成工具,以及常用的时间处理等实用工具。

特性

  • 🔍 VictoriaMetrics 集成 - 提供时序数据库查询功能
  • 时间工具 - 常用的时间戳处理工具
  • 📊 统一响应格式 - 标准化的 API 响应结构
  • 🛠 基础工具类 - 提供 API 基类和通用功能
  • 🧪 完整测试 - 包含单元测试确保代码质量

安装

从 PyPI 安装

pip install pytbox

从源码安装

git clone https://github.com/your-username/pytbox.git
cd pytbox
pip install -e .

快速开始

VictoriaMetrics 查询

from pytbox.victoriametrics import VictoriaMetrics

# 初始化 VictoriaMetrics 客户端
vm = VictoriaMetrics(url="http://localhost:8428", timeout=5)

# 查询指标数据
result = vm.query('ping_average_response_ms')

if result.is_success():
    print("查询成功:", result.data)
else:
    print("查询失败:", result.msg)

时间工具使用

from pytbox.utils.timeutils import TimeUtils

# 获取当前时间戳(秒)
timestamp = TimeUtils.get_timestamp()
print(f"当前时间戳: {timestamp}")

# 获取当前时间戳(毫秒)
timestamp_ms = TimeUtils.get_timestamp(now=False)
print(f"当前时间戳(毫秒): {timestamp_ms}")

使用基础 API 类

from pytbox.common.base import BaseAPI

class MyAPI(BaseAPI):
    def __init__(self):
        super().__init__(base_url="https://api.example.com")
    
    def make_request(self):
        # 记录请求日志
        log = self.log_request("GET", "/users", {"param": "value"})
        print("请求日志:", log)
        
        # 检查会话存活时间
        age = self.get_session_age()
        print(f"会话存活时间: {age} 秒")

api = MyAPI()
api.make_request()

统一响应格式

from pytbox.utils.response import ReturnResponse

# 创建成功响应
success_response = ReturnResponse(
    code=0,
    msg="操作成功",
    data={"user_id": 123, "username": "admin"}
)

# 创建错误响应
error_response = ReturnResponse(
    code=1,
    msg="用户未找到",
    data=None
)

# 检查响应状态
if success_response.is_success():
    print("操作成功:", success_response.data)

if error_response.is_error():
    print("操作失败:", error_response.msg)

API 文档

VictoriaMetrics

VictoriaMetrics(url, timeout=3)

VictoriaMetrics 时序数据库客户端。

参数:

  • url (str): VictoriaMetrics 服务器地址
  • timeout (int): 请求超时时间,默认 3 秒

方法:

query(query: str) -> ReturnResponse

执行 PromQL 查询。

参数:

  • query (str): PromQL 查询语句

返回:

  • ReturnResponse: 统一响应格式,包含查询结果

TimeUtils

TimeUtils.get_timestamp(now=True) -> int

获取时间戳。

参数:

  • now (bool): True 返回秒级时间戳,False 返回毫秒级时间戳

返回:

  • int: 时间戳

ReturnResponse

统一的响应格式类,包含以下状态码:

  • 0 - 成功 (SUCCESS)
  • 1 - 一般错误 (ERROR)
  • 2 - 警告 (WARNING)
  • 3 - 未授权 (UNAUTHORIZED)
  • 4 - 资源未找到 (NOT_FOUND)
  • 5 - 请求超时 (TIMEOUT)
  • 6 - 参数错误 (INVALID_PARAMS)
  • 7 - 权限不足 (PERMISSION_DENIED)
  • 8 - 服务不可用 (SERVICE_UNAVAILABLE)
  • 9 - 数据库错误 (DATABASE_ERROR)
  • 10 - 网络错误 (NETWORK_ERROR)

方法:

  • is_success() -> bool: 判断是否为成功响应
  • is_error() -> bool: 判断是否为错误响应

开发

安装开发依赖

pip install -e ".[dev]"

运行测试

pytest tests/

代码格式化

black src/ tests/

代码检查

ruff check src/ tests/

环境变量

可以通过以下环境变量进行配置:

发布流程

项目使用 GitHub Actions 自动发布到 PyPI:

  1. 更新版本号(在 pyproject.toml 中)
  2. 使用发布脚本创建标签:
    ./publish.sh 0.1.1
    
  3. GitHub Actions 会自动构建并发布到 PyPI

贡献

欢迎提交 Issue 和 Pull Request!

  1. Fork 项目
  2. 创建功能分支 (git checkout -b feature/AmazingFeature)
  3. 提交更改 (git commit -m 'Add some AmazingFeature')
  4. 推送到分支 (git push origin feature/AmazingFeature)
  5. 开启 Pull Request

许可证

本项目采用 MIT 许可证 - 查看 LICENSE 文件了解详情。

更新日志

v0.1.0

  • 初始版本发布
  • 添加 VictoriaMetrics 集成
  • 添加时间工具类
  • 添加统一响应格式
  • 添加基础 API 工具类

联系方式

如有问题或建议,请通过以下方式联系:


PytBox - 让运维开发更简单! 🚀

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

pytbox-0.1.5.tar.gz (63.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytbox-0.1.5-py3-none-any.whl (79.8 kB view details)

Uploaded Python 3

File details

Details for the file pytbox-0.1.5.tar.gz.

File metadata

  • Download URL: pytbox-0.1.5.tar.gz
  • Upload date:
  • Size: 63.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.13

File hashes

Hashes for pytbox-0.1.5.tar.gz
Algorithm Hash digest
SHA256 3b10ba51a6177a8538796a5a44da7727471be4fcb7a03a9b65ae071e1bf9715a
MD5 abd5fc55599085f471dcd2b4bbad5fbb
BLAKE2b-256 54739faf914210f56d50d2bb496ab0b7dbf113bffdfef62f44b486624a394015

See more details on using hashes here.

File details

Details for the file pytbox-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: pytbox-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.13

File hashes

Hashes for pytbox-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9c93ba2d8feecc8f1d775f08c2ad50f2068d6b7758d4ddc9ee3c79477384e178
MD5 81c81b0381bafcc703198b8fb1c82800
BLAKE2b-256 b13aac01ca7f1bde5fb14def24a543f398dbc61fabcf594a34d556bef8e8950e

See more details on using hashes here.

Supported by

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