Nutricare data access package
Project description
nutricare-data-packages
Nutricare 的数据访问基础包,封装 MongoDB 仓储与本地存储抽象基类。
安装
pip install nutricare-data-packages
快速使用
from pathlib import Path
from nutricare_data_packages import MetadataStore, StorageBase
store = MetadataStore(
mongodb_url="mongodb://localhost:27017",
db_name="nutricare",
auth_source="admin",
)
class ReportStorage(StorageBase):
@property
def storage_subdir(self) -> str:
return "reports"
def _write_impl(self, relative_path: str, data: bytes) -> Path:
target = self.resolve_path(relative_path)
target.parent.mkdir(parents=True, exist_ok=True)
target.write_bytes(data)
return target
本地构建与发布
python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
python -m twine upload dist/*
说明
- 包名(pip 安装名):
nutricare-data-packages - 导入名(Python import):
nutricare_data_packages
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.0.tar.gz.
File metadata
- Download URL: nutricare_data_packages-0.1.0.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cecd3a664cea2bbdf559ce3ae217634291dbd761fe6fc95acd51d0539502369
|
|
| MD5 |
024aa112c887e2f69a49159b3b9284c2
|
|
| BLAKE2b-256 |
2e851ee3a375d5979eb3af73cf596c81095f9376bb9477edc60b9115272bb800
|
File details
Details for the file nutricare_data_packages-0.1.0-py3-none-any.whl.
File metadata
- Download URL: nutricare_data_packages-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.0 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 |
2f59b6905cdf5ee0aa482362acf464231ff533c9e6fa031bd9e5a5be2ba66caf
|
|
| MD5 |
a7d7ce056e0c38a896aa574c0e8bb224
|
|
| BLAKE2b-256 |
0946732086919df2fa942e7e2e8771062c41376b00144b3f3faab941bdf4a253
|