Metadata-Version: 2.1
Name: translatekit
Version: 0.1.0
Summary: 一个简单快捷的翻译服务工具包，支持自定义脚本扩展
Home-page: https://github.com/HZBHZB1234/Py-Translate-Kit
Author: HZBHZB1234
Author-email: HZBHZB1234 <HZBHZB1234@outlook.com>
License: MIT License
        
        Copyright (c) 2025 HZBHZB1234
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/HZBHZB1234/Py-Translate-Kit
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.1
Requires-Dist: beautifulsoup4>=4.9.3
Requires-Dist: jsonpatch>=1.26
Provides-Extra: extras

# Py-Translate-Kit (开发中)
一个python库，简单而快捷的使用翻译服务，允许用户导入自定义脚本  
**还在开发，别到时候看见issue里有人问为什么搜不到**

## 简介

Py-Translate-Kit是一个轻量级的Python翻译工具包，旨在简化翻译服务的集成过程。
它内置了大量可用翻译服务，并允许用户通过自定义脚本来扩展翻译能力。

## 特性

- 简单易用的翻译接口
- 支持主流翻译服务
- 允许用户导入自定义翻译脚本
- 易于扩展的设计

## 安装

### 从PyPI安装（推荐）

```bash
pip install translatekit
```

### 从源码安装

我一会儿再来写这个

## 使用方法

### 作为命令行工具使用

```bash
py-translate --help
```

### 在Python代码中使用

```python
# 基础使用示例
import translatekit
translator = translatekit.TranslatorCore()
# 使用翻译功能
```

查看 [example.py](example.py) 获取更详细的使用示例。

## 目录结构

```
py_translate_kit/
├── __init__.py          # 包初始化文件
├── core.py              # 核心功能
└── main.py              # 主入口点
```

## 许可证

本项目采用 [LICENSE](LICENSE) 许可证。
