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.4.tar.gz (8.6 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.4-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nutricare_data_packages-0.1.4.tar.gz
  • Upload date:
  • Size: 8.6 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.4.tar.gz
Algorithm Hash digest
SHA256 7861fcb58c5266de09431eac7de3a61f57a77be7461f441a77ed881a1ea8f628
MD5 c56d911ac20365720698d52bb02a9e81
BLAKE2b-256 6e67d4a80dd87b210df8556411698169ee584165c6e1cf9a410c1629a9f93bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nutricare_data_packages-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1142c93df9a5f414bf89a0b0cb4e06fbab5c10c7fabca91d6db5e6fae8ad9952
MD5 460d379d6c986940f4a463f7dbe1790a
BLAKE2b-256 622ebc311e86b9360149e1d9d31e998dfe02666d0430eb8017cb4cfb61556451

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