Skip to main content

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:27017mongodb:127.0.0.1:27017 或完整 mongodb://...
  • write 是统一入口:自动做路径校验、md5 计算、元数据写入和幂等判断。
  • NUTRICARE_TICKET_IDNUTRICARE_TASK_ID 从环境变量读取。

本地构建与发布

python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
python -m twine upload dist/*

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

nutricare_data_packages-0.1.9.tar.gz (11.0 kB view details)

Uploaded Source

Built Distribution

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

nutricare_data_packages-0.1.9-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file nutricare_data_packages-0.1.9.tar.gz.

File metadata

  • Download URL: nutricare_data_packages-0.1.9.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for nutricare_data_packages-0.1.9.tar.gz
Algorithm Hash digest
SHA256 f2452f61803251093a034bac59243d7d2e157d5d61022c26965720c4d3653c10
MD5 a64869f5e5bdba4dfe240efc9ea36f30
BLAKE2b-256 2ca02fa9160957c51833cfbeecd1e20407c626c772a8a0c8a7b612da66876e18

See more details on using hashes here.

File details

Details for the file nutricare_data_packages-0.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for nutricare_data_packages-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 c61132d7efe5a50a6d45d05c445b5b1b8bd2bca9226a1e3e2fff5a16acbc351e
MD5 3dbacd9255cd257157120775c52db029
BLAKE2b-256 e686d75f1f53dcea5786a9c33f516705f3c39ce7bc1b508edc1984f9eacd1608

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