SeerAPI 数据模型/ORM 定义
Project description
seerapi-models
SeerAPI 数据模型/ORM 定义,用于前后端开发。
安装
使用 uv:
uv add seerapi-models
或者使用 pip:
pip install seerapi-models
也可以使用其他包管理器,如 poetry 等。
使用
from seerapi_models import Item, ItemORM, ItemCategory, ResourceRef
category_ref = ResourceRef.from_model(ItemCategory, id=1) # 定义物品分类字段引用
item = Item(
id=1,
name="Item 1",
max=100,
category=catgeory_ref
)
print(item.name)
assert isinstance(item.to_orm(), ItemORM) # 转换为 ORM 模型
开发环境部署
使用 uv 部署
-
安装 uv
# macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh # Windows powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
-
克隆项目
git clone https://github.com/SeerAPI/seerapi-models.git cd seerapi-models
-
安装依赖
# 同步项目依赖 uv sync
-
运行开发环境
# 在项目虚拟环境中运行 Python uv run python # 运行测试 uv run pytest # 运行代码检查 uv run ruff check uv run ruff format
开发容器 (推荐)
项目提供了 Dev Container 配置,支持一键部署开发环境:
- 使用 VS Code 打开项目
- 安装 Dev Containers 扩展
- 按
Ctrl+Shift+P打开命令面板 - 选择 "Dev Containers: Reopen in Container"
容器会自动安装:
- Python 3.10
- uv 包管理器
- Ruff 代码检查工具
- 相关 VS Code 扩展
环境要求
- Python >= 3.10
- uv >= 0.9.0 (推荐使用最新版)
许可证
本项目基于 MIT License 开源。
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
seerapi_models-1.2.1.tar.gz
(26.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file seerapi_models-1.2.1.tar.gz.
File metadata
- Download URL: seerapi_models-1.2.1.tar.gz
- Upload date:
- Size: 26.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1859f2627678b7fd05bcbe85e0cb649c1939fc7c098ed2cb71cd3ecb5ff2764
|
|
| MD5 |
c669c6d8365a7a6cfea0e095c6a285c0
|
|
| BLAKE2b-256 |
f81620b88db1659ce7ab2c1e6a9cfef5d1c0a9a1a3677b22e1a5d0cfb20f906b
|
File details
Details for the file seerapi_models-1.2.1-py3-none-any.whl.
File metadata
- Download URL: seerapi_models-1.2.1-py3-none-any.whl
- Upload date:
- Size: 39.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b3d53ed5cb69159be772737d0b66d0211a7bd03f8f06b0c19f271eb3b5c2e71
|
|
| MD5 |
0e2134da0b01b2a50e36a824b921f5ea
|
|
| BLAKE2b-256 |
6ae74002b681f72d877c289483e71ca4c6bc959ef94eae247006cffb558dd2d0
|