معرفی شرکت ها


django-traits-0.0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Traits for Django
ویژگی مقدار
سیستم عامل -
نام فایل django-traits-0.0.1
نام django-traits
نسخه کتابخانه 0.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Anton Agestam
ایمیل نویسنده git@antonagestam.se
آدرس صفحه اصلی https://github.com/5monkeys/django-traits/
آدرس اینترنتی https://pypi.org/project/django-traits/
مجوز BSD-3-Clause License
<h1 align=center>django-traits</h1> <p align=center> <a href=https://github.com/5monkeys/django-traits/actions?query=workflow%3ACI+branch%3Amain><img src=https://github.com/5monkeys/django-traits/workflows/CI/badge.svg alt="CI Build Status"></a> </p> Define traits for Django models that works seamlessly both in-Python and using the ORM, with coordinated tests. ### Installation ```bash $ python3 -m pip install django-traits ``` ### Example ```python class Rich(Trait["Person"]): q = models.Q(income__gt=1000) def check_instance(self, instance: Person) -> bool: return instance.income > 1000 class Person(models.Model): is_rich = Rich() income = models.PositiveIntegerField() # Filter for rich people, this uses the ORM predicate as defined in q. rich_people = Person.is_rich.all() # Check if a person is rich, this uses the in-Python predicate as defined in check_instance(). person = Person.objects.first() if person.is_rich: print("Money is not a problem") else: print("This person is not rich") ``` The automated test factory makes it simple to write tests that guarantees that the in-Python predicate stays in sync with its ORM counterpart. ```python class TestPerson: test_is_rich = test_trait( ( (PersonFactory(), False), (PersonFactory(income=1000), False), (PersonFactory(income=1001), True), ) ) ``` The above example will generate tests that exercises the in-Python predicate on instances of `Person`, as well as tests that tries to filter using the ORM predicate. That means that if the implementations were to drift apart, for instance if the limit was increased to `2000` in `check_instance()` but not in `q`, the tests would fail.


نیازمندی

مقدار نام
>=3.2 Django
- pytest
- pytest-django
- pytest-mypy-plugins
- django-stubs
- coverage


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

مقدار نام
>=3.9 Python


نحوه نصب


نصب پکیج whl django-traits-0.0.1:

    pip install django-traits-0.0.1.whl


نصب پکیج tar.gz django-traits-0.0.1:

    pip install django-traits-0.0.1.tar.gz