Skip to main content

AuriMyth Foundation Kit - 核心基础架构工具包

Project description

AuriMyth Foundation Kit

这是AuriMyth项目的核心基础架构工具包,提供所有微服务共用的基础设施组件。

功能模块

  • core: 核心功能(数据库、缓存、任务调度等)
  • utils: 工具函数(日志、安全、HTTP客户端等)
  • models: 共享数据模型和响应模型
  • repositories: 基础仓储模式
  • services: 基础服务类
  • adapters: 第三方服务适配器
  • rpc: RPC通信框架
  • exceptions: 错误处理系统
  • i18n: 国际化支持
  • testing: 测试框架
  • migrations: 数据库迁移工具

主要功能

1. 国际化支持 (i18n)

提供完整的多语言支持,包括文本翻译、日期/数字本地化等:

from aurimyth.foundation_kit.i18n import Translator, translate, set_locale

# 设置语言环境
set_locale("zh_CN")

# 使用翻译器
translator = Translator(locale="zh_CN")
message = translator.translate("user.created", name="张三")

# 使用简写函数
message = translate("user.created", name="张三")

# 装饰器方式
@_("user.title")
def get_user_title():
    return "User Title"  # 会被翻译

2. 测试框架

提供便捷的测试工具,包括测试基类、测试客户端、数据工厂等:

from aurimyth.foundation_kit.testing import TestCase, TestClient, Factory

class UserServiceTest(TestCase):
    """测试基类,自动处理数据库事务回滚"""
    
    async def setUp(self):
        """测试前准备"""
        self.client = TestClient(app)
        self.user_factory = Factory(User)
    
    async def test_create_user(self):
        """测试创建用户"""
        user = await self.user_factory.create(name="张三")
        response = await self.client.post("/users", json={"name": "张三"})
        assert response.status_code == 201

3. 数据库迁移工具

提供便捷的数据库迁移管理,类似 Django 的命令行接口:

from aurimyth.foundation_kit.migrations import MigrationManager

# 使用 Python API
migration_manager = MigrationManager()
await migration_manager.make_migrations(message="add user table")
await migration_manager.migrate_up()
await migration_manager.migrate_down(version="previous")
status = await migration_manager.status()

命令行工具:

# 生成迁移文件
aurimyth-migrate make -m "add user table"

# 执行迁移
aurimyth-migrate up

# 回滚迁移
aurimyth-migrate down

# 查看状态
aurimyth-migrate status

# 显示迁移历史
aurimyth-migrate show

4. 代码生成器

快速生成标准的 CRUD 代码(模型、仓储、服务、API 路由):

# 生成完整 CRUD(Model + Repository + Service + API)
aum generate crud user

# 单独生成各层代码
aum generate model user      # SQLAlchemy 模型
aum generate repo user       # Repository 仓储层
aum generate service user    # Service 服务层
aum generate api user        # API 路由

# 交互式生成(推荐):逐步选择字段、类型、验证规则
aum generate crud user -i
aum generate model user -i

# 指定字段(非交互式)
aum generate model user --fields "name:str,email:str,age:int"

交互式模式 (-i) 会引导你:

  • 添加字段名称和类型
  • 设置字段约束(唯一、可空、默认值等)
  • 配置关系字段(外键、多对多等)
  • 自动插入 API 路由到 api/__init__.py

生成的代码遵循项目架构模式,开箱即用。

使用方式

在AuriMyth工作区内的其他包中,可以直接导入:

from aurimyth.foundation_kit.infrastructure.database import DatabaseManager
from aurimyth.foundation_kit.infrastructure.logging import logger
from aurimyth.foundation_kit.core import BaseModel, BaseRepository, BaseService
from aurimyth.foundation_kit.interfaces import BaseRequest, BaseResponse
from aurimyth.foundation_kit.application.rpc import RPCClient

开发指南

修改此包后,所有依赖它的服务都会自动使用最新版本,无需重新安装。

安装

# 推荐(PostgreSQL + Redis + 任务队列 + 调度器)
uv add "aurimyth-foundation-kit[recommended]"

# 或按需组合
uv add "aurimyth-foundation-kit[postgres,redis]"

# 全部依赖
uv add "aurimyth-foundation-kit[all]"

可选依赖

名称 说明
postgres PostgreSQL 数据库
mysql MySQL 数据库
sqlite SQLite 数据库
redis Redis 缓存
s3 S3 对象存储
tasks 任务队列
rabbitmq RabbitMQ 支持
scheduler 定时调度
recommended 推荐组合
all 全部依赖

开发环境设置

# 克隆仓库
git clone https://github.com/AuriMythNeo/aurimyth-foundation-kit.git
cd aurimyth-foundation-kit

# 安装依赖
uv sync --group dev

# 运行测试
pytest

# 代码检查
ruff check .
mypy aurimyth/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aurimyth_foundation_kit-0.0.5.tar.gz (171.3 kB view details)

Uploaded Source

Built Distribution

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

aurimyth_foundation_kit-0.0.5-py3-none-any.whl (250.7 kB view details)

Uploaded Python 3

File details

Details for the file aurimyth_foundation_kit-0.0.5.tar.gz.

File metadata

File hashes

Hashes for aurimyth_foundation_kit-0.0.5.tar.gz
Algorithm Hash digest
SHA256 1bc20121674b93b4d43fc9cbc1a837d42897b006b3fb259a55ee1c7f7a9b8728
MD5 5d11d4ef62dd50e0b2d4c6d774f4c987
BLAKE2b-256 aeaf208a89e35642b2632765765974f4017ad3b5814457c764f3a812e6e033ce

See more details on using hashes here.

File details

Details for the file aurimyth_foundation_kit-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for aurimyth_foundation_kit-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4ee1d10f111b6f4dcee5c79bf4d9e5798106944a0046c32d79d16fa40775bbe8
MD5 ceb40e906701682e532d244f5121a9d1
BLAKE2b-256 67f60f6a210d1afb181862d09c35ee83bf46231a88ecc43a12935d94c4b192ca

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