Metadata-Version: 2.4
Name: pytola-core
Version: 0.2.4
Summary: Core utilities for Pytola - Essential components and utilities
Project-URL: Documentation, https://pytola.readthedocs.io/zh-cn/stable/
Project-URL: Issues, https://gitee.com/gooker_young/pytola/issues
Project-URL: Repository, https://gitee.com/gooker_young/pytola
Author-email: gooker_young <gooker_young@qq.com>
Maintainer-email: gooker_young <gooker_young@qq.com>
License: MIT license
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Pytola Core

Pytola 应用程序的核心工具和组件.

## 功能特性

- **高级日志**: 带文件轮转的彩色控制台输出
- **高 DPI 支持**: Qt 应用程序的自动缩放
- **安全工具**: 输入验证和清理
- **主题管理**: 灵活的带继承的主题系统
- **环境助手**: PySide 环境配置

## 安装

```bash
pip install pytola-core
```

## 使用

```python
from pytola_core import logger, enable_highdpi_scaling

# 启用高 DPI 缩放
enable_highdpi_scaling()

# 使用日志器
logger.info("应用程序已启动")
```

## 模块

- `logger`: 高级日志系统
- `highdpi`: 高 DPI 缩放支持
- `security`: 输入验证工具
- `themes`: 主题管理系统
- `env`: 环境配置助手
