معرفی شرکت ها


documented-0.1.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Templated docstrings for Python classes.
ویژگی مقدار
سیستم عامل -
نام فایل documented-0.1.3
نام documented
نسخه کتابخانه 0.1.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Anatoly Scherbakov
ایمیل نویسنده altaisoft@gmail.com
آدرس صفحه اصلی https://github.com/anatoly-scherbakov/documented
آدرس اینترنتی https://pypi.org/project/documented/
مجوز MIT
# documented [![Coverage](https://coveralls.io/repos/github/anatoly-scherbakov/documented/badge.svg?branch=master)](https://coveralls.io/github/anatoly-scherbakov/documented?branch=master) [![Python Version](https://img.shields.io/pypi/pyversions/documented.svg)](https://pypi.org/project/documented/) [![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide) ![PyPI - License](https://img.shields.io/pypi/l/documented) Templated docstrings for Python classes. ## Features - Describe your business logic in docstrings of your classes and exceptions; - When printing an object or an exception, the library will substitute the placeholders in the docstring text with runtime values, - And you (or your user) will see a human-readable text. ## Installation ```bash pip install documented ``` ## Example ```python from dataclasses import dataclass from documented import DocumentedError @dataclass class InsufficientWizardryLevel(DocumentedError): """ 🧙 Your level of wizardry is insufficient ☹ Spell: {self.spell} Minimum level required: {self.required_level} Actual level: {self.actual_level} {self.comment} Unseen University will be happy to assist in your training! 🎓 """ spell: str required_level: int actual_level: int @property def comment(self) -> str: if self.actual_level <= 0: return '(You are Rincewind, right? Hi!)' else: return '' raise InsufficientWizardryLevel( spell='Animal transformation', required_level=8, actual_level=0, ) ``` which prints: ``` --------------------------------------------------------------------- InsufficientWizardryLevel Traceback (most recent call last) <ipython-input-1-d8ccdb953cf6> in <module> 27 28 ---> 29 raise InsufficientWizardryLevel( 30 spell='Animal transformation', 31 required_level=8, InsufficientWizardryLevel: 🧙 Your level of wizardry is insufficient ☹ Spell: Animal transformation Minimum level required: 8 Actual level: 0 (You are Rincewind, right? Hi!) Unseen University will be happy to assist in your training! 🎓 ``` For more examples, see: https://anatoly-scherbakov.github.io/documented/ This project was generated with [`wemake-python-package`](https://github.com/wemake-services/wemake-python-package).


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

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


نحوه نصب


نصب پکیج whl documented-0.1.3:

    pip install documented-0.1.3.whl


نصب پکیج tar.gz documented-0.1.3:

    pip install documented-0.1.3.tar.gz