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.3.tar.gz (165.0 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.3-py3-none-any.whl (243.2 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for aurimyth_foundation_kit-0.0.3.tar.gz
Algorithm Hash digest
SHA256 1cc6cab69073c2ffa78b78d6cf677356c343b643ddded4a2542f34ca0ae5e089
MD5 88954604ad91a7fabce44ea7f58495eb
BLAKE2b-256 66ae5879868bcbfc604e4e2b53df69fe501b6e0614fba41021c2f7f986af2d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aurimyth_foundation_kit-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2309f15b7b48182234fc1441f2da7cd4ffab2b239bb21456bbc1c70eb63d9e04
MD5 a9d6fb2754d1f9aadd84684ce554bf76
BLAKE2b-256 4032d484488594daa14f64063ab8bc5708218b29edf1db59c0116cd764f5ca11

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