معرفی شرکت ها


artefacts-1.2.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Deserialization for dbt artifacts
ویژگی مقدار
سیستم عامل -
نام فایل artefacts-1.2.0
نام artefacts
نسخه کتابخانه 1.2.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Tom Waterman
ایمیل نویسنده tjwaterman99@gmail.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/artefacts/
مجوز -
# artefacts [![PyPI version](https://badge.fury.io/py/artefacts.svg)](https://badge.fury.io/py/artefacts) ![badge](https://img.shields.io/badge/dbt-%3E%3D1.0-orange?style=flat&logo=dbt) ![badge](https://img.shields.io/pypi/pyversions/artefacts?logo=python) ![badge](https://img.shields.io/github/workflow/status/tjwaterman99/artefacts/CI/main?label=CI) [![Coverage Status](https://coveralls.io/repos/github/tjwaterman99/artefacts/badge.svg?branch=main)](https://coveralls.io/github/tjwaterman99/artefacts?branch=main) _A deserialization library for dbt artifacts._ ``` pip install artefacts ``` The `artefacts.api` module aims to provide simple, easy to use python objects for interacting with your dbt project. Here's an example that identifies models in your project that are missing tests or descriptions. ```py >>> import artefacts.api >>> for model in artefacts.api.models(): ... if model.description is None or len(model.tests) == 0: ... print(f"Incomplete model: {model.name}") ``` ### Usage After installing artefacts, you first need to _compile_ your dbt project. ``` dbt compile ``` You can then start using the api. ```py >>> import artefacts.api ``` ### Docs Documentation for the project is available on the Github Pages site. > https://tjwaterman99.github.io/artefacts/ All methods exposed by the api are documented with usage examples in the API section. > https://tjwaterman99.github.io/artefacts/api.html References for the objects returned by the api are available in the References section. > https://tjwaterman99.github.io/artefacts/reference.html ### Development Setup Open this repository in a Github Codespace. (Click the green `Code` button in the repository's [Github page](https://github.com/tjwaterman99/artefacts) and select `New Codespace`). #### Testing ``` poetry run pytest ``` By default, pytest will test against the dbt project located at `ARTEFACTS_DBT_PROJECT_DIR`. To test against a different dbt project, update that environment variable and build the project. ``` export ARTEFACTS_DBT_PROJECT_DIR=$PWD/dbt_projects/dbt-starter-project poetry run dbt build --project-dir $ARTEFACTS_DBT_PROJECT_DIR poetry run pytest ``` To run the doctests use the `--doctest-modules` flag. Note that the doctests are intended to pass only when using the [`poffertjes_shop`](https://github.com/tjwaterman99/poffertjes_shop) project. ``` poetry run pytest --doctest-modules ``` #### Documentation site Use `sphinx-livereload` to run the docs site on port `8000`. ``` poetry run sphinx-autobuild docs/ docs/_build --watch artefacts ```


نیازمندی

مقدار نام
>=1.9.0,<2.0.0 pydantic
>=0.10.2,<0.11.0 toml
>=21.3,<22.0 packaging


زبان مورد نیاز

مقدار نام
>=3.7,<4.0 Python


نحوه نصب


نصب پکیج whl artefacts-1.2.0:

    pip install artefacts-1.2.0.whl


نصب پکیج tar.gz artefacts-1.2.0:

    pip install artefacts-1.2.0.tar.gz