Skip to main content

Aury Boot - 基于 FastAPI 生态的企业级 API 开发框架

Project description

Aury Boot

基于 FastAPI 生态的企业级 API 开发框架,提供所有微服务共用的基础设施组件。

快速开始

# 1. 创建项目目录并初始化
mkdir my-service && cd my-service
uv init . --name my_service --no-package --python 3.13

# 2. 添加依赖
uv add "aury-boot[recommended,admin]"  # admin 可选,提供 SQLAdmin 管理后台

# 3. 初始化项目结构
aury init

# 4. 启动开发服务器
aury server dev

功能模块

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

主要功能

1. 国际化支持 (i18n)

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

from aury.boot.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 aury.boot.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 aury.boot.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()

命令行工具:

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

# 执行迁移
aury migrate up

# 回滚迁移
aury migrate down

# 查看状态
aury migrate status

# 显示迁移历史
aury migrate show

4. 代码生成器

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

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

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

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

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

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

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

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

使用方式

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

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

开发指南

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

安装

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

# 或按需组合
uv add "aury-boot[postgres,redis]"

# 全部依赖
uv add "aury-boot[all]"

可选依赖

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

开发环境设置

# 克隆仓库
git clone https://github.com/AuriMyth/aury-boot.git
cd aury-boot

# 安装依赖
uv sync --group dev

# 运行测试
pytest

# 代码检查
ruff check .
mypy aury/

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

aury_boot-0.0.38.tar.gz (267.0 kB view details)

Uploaded Source

Built Distribution

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

aury_boot-0.0.38-py3-none-any.whl (395.1 kB view details)

Uploaded Python 3

File details

Details for the file aury_boot-0.0.38.tar.gz.

File metadata

  • Download URL: aury_boot-0.0.38.tar.gz
  • Upload date:
  • Size: 267.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.11

File hashes

Hashes for aury_boot-0.0.38.tar.gz
Algorithm Hash digest
SHA256 100c9011e76ea464d3369f95e8466dd48970515cca58587e3a257e67eaf990a1
MD5 d1e23dda84998d646f3deb3915d1fa2e
BLAKE2b-256 3d0e75f97f88a792b13f01ce7bfce0a0d0dc995035122eefe93495b47f3d2e46

See more details on using hashes here.

File details

Details for the file aury_boot-0.0.38-py3-none-any.whl.

File metadata

  • Download URL: aury_boot-0.0.38-py3-none-any.whl
  • Upload date:
  • Size: 395.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.11

File hashes

Hashes for aury_boot-0.0.38-py3-none-any.whl
Algorithm Hash digest
SHA256 755dec897700add7897b5243219d7c5c006dbea59da4979263482ca450f16341
MD5 384d8ab856a1611b5f0712379c614d8f
BLAKE2b-256 e34d900ced486856c21f52f17b128b42e85f7daf6136c134f81a81e6e1152de7

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