This repository has been archived on 2026-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
resources/src/monitor/check_javbus.py
2025-06-27 09:20:47 +08:00

14 lines
269 B
Python

import json
import time
import src.db_utils.sqlite_db as sqlite_db
import src.utils.utils as utils
db_tools = sqlite_db.JavbusDBHandler()
if __name__ == "__main__":
# 命令行参数处理
result = db_tools.get_statics()
utils.pretty_print_json(result)