Skip to main content

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 StorageBase


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


storage = ReportStorage()
storage.write_metadata(
        relative_path=relative_path,
        size=len(content),
        status="pending",
    )
path = storage.write(relative_path, content)

本地构建与发布

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.3.tar.gz (8.1 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.3-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nutricare_data_packages-0.1.3.tar.gz
  • Upload date:
  • Size: 8.1 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.3.tar.gz
Algorithm Hash digest
SHA256 0f8eedb16778affa826b32324226d66259fb75f96686dd6f5d900db672756326
MD5 676c4ae0963e3f254096b6b0fa5e7299
BLAKE2b-256 2d43ae479ea193d1ce4b79d4e1b2d7f84aa888c257adfa0f58207cbe80831fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nutricare_data_packages-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7577bb6e29d84ddaa3554d86ba070c99124727505ced90f76d6fc128b5bdf3f8
MD5 d5bb3d2344d97b19b0a7340b38dbffae
BLAKE2b-256 e49b61d3a7b70443877a057e55dc7ee72a10540d4f68919b1535dca34d6627aa

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