Nutricare data access package
Project description
nutricare-data-packages
Nutricare 的数据访问基础包,封装 MongoDB 仓储与本地存储抽象基类。
安装
pip install nutricare-data-packages
快速使用
from nutricare_data_packages import StorageBase
class ReportStorage(StorageBase):
@property
def storage_subdir(self) -> str:
return "reports"
def _write_impl(
self, relative_path: str, data: bytes, **kwargs
) -> tuple[bool, dict | None]:
target, _ = self.resolve_path(relative_path)
target.parent.mkdir(parents=True, exist_ok=True)
target.write_bytes(data)
return True, None
storage = ReportStorage()
relative_path = "daily/report.txt"
content = b"hello"
ok = storage.write(relative_path, content)
说明:
- MongoDB 连接串只从环境变量
mongodb_url读取。 - 允许传入
127.0.0.1:27017、mongodb:127.0.0.1:27017或完整mongodb://...。 write是统一入口:自动做路径校验、md5 计算、元数据写入和幂等判断。NUTRICARE_TICKET_ID与NUTRICARE_TASK_ID从环境变量读取。
本地构建与发布
python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
python -m twine upload dist/*
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
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 nutricare_data_packages-0.1.7.tar.gz.
File metadata
- Download URL: nutricare_data_packages-0.1.7.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d23871da918f6ed81a74e15006503744116d43fd017fb9c462869cc9564c22df
|
|
| MD5 |
3e604e8159992745c4c650fc845410d5
|
|
| BLAKE2b-256 |
914591ce9ea3a2713e22ef973df32ce716e0054f679080140025cfb62885ff93
|
File details
Details for the file nutricare_data_packages-0.1.7-py3-none-any.whl.
File metadata
- Download URL: nutricare_data_packages-0.1.7-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
546259027227fd2c8808387968dbb8953b4db6700cbebf3316cdb1f31cf99c0b
|
|
| MD5 |
eade9a6e1c9e015aa2362f744b70bea6
|
|
| BLAKE2b-256 |
8a84935a1fc1a1506028551391c321c2614c8fdd2819f881c00aff0325634499
|