معرفی شرکت ها


django-easy-scoping-1.13


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

A mixin to allow users to create scopes on Django models.
ویژگی مقدار
سیستم عامل -
نام فایل django-easy-scoping-1.13
نام django-easy-scoping
نسخه کتابخانه 1.13
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Net Prophet
ایمیل نویسنده wellsroberte@gmail.com
آدرس صفحه اصلی https://github.com/net-prophet/django-easy-scoping
آدرس اینترنتی https://pypi.org/project/django-easy-scoping/
مجوز BSD
Django Easy Scoping allows you to register scopes and aggregate functions on your Django models. ## Installation To get the `ScopingMixin.py` file you can download it or use pip. ### Downloading File Download the ScopingMixin file from github. [ScopingMixin.py](http://github.com/net-prophet/django-easy-scoping/blob/master/DjangoEasyScoping/DjangoEasyScoping/ScopingMixin.py) Import `ScopingMixin` and `ScopingQuerySet` from `ScopingMixin.py`. ```python from <path to file>.ScopingMixin import ScopingMixin, ScopingQuerySet ``` ### Using pip `$ pip install django-easy-scoping` Import `ScopingMixin` and `ScopingQuerySet` from `ScopingMixin.py`. ```python from DjangoEasyScoping.ScopingMixin import ScopingMixin, ScopingQuerySet ``` ### Implementing Mix `ScopingMixin` in with the Django model(s) you'd like to create scopes for. ```python class Purchase(ScopingMixin, models.Model): ``` Override the Queryset for that model using `ScopingQuerySet`. ```python objects = ScopingQuerySet.as_manager() ``` Done! ## Implementing with existing Managers/Querysets If you'd like to continue using your own custom manager/queryset then you can! You only need to take action if you'd like to name the ScopingQuerySet override something other than `objects`, for instance: ```python other_name = ScopingQuerySet.as_manager() ``` Then simply open `ScopingMixin.py` in your `sites-packages` and edit the following methods. ```python class ScopingMixin(object): @classmethod def get_scope(cls, name) if hasattr(cls, '__scopes__') and name in cls.scopes(): return getattr(cls.objects.all(), name) @classmethod def get_aggregate(cls, name) if hasattr(cls, '__aggregate__') and name in cls.aggregates(): return getattr(cls.objects.all(), name) ``` becomes ```python class ScopingMixin(object): @classmethod def get_scope(cls, name) if hasattr(cls, '__scopes__') and name in cls.scopes(): return getattr(cls.other_name.all(), name) @classmethod def get_aggregate(cls, name) if hasattr(cls, '__aggregate__') and name in cls.aggregates(): return getattr(cls.other_name.all(), name) ```


نیازمندی

مقدار نام
<3.0,>=1.11 Django


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

مقدار نام
>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* Python


نحوه نصب


نصب پکیج whl django-easy-scoping-1.13:

    pip install django-easy-scoping-1.13.whl


نصب پکیج tar.gz django-easy-scoping-1.13:

    pip install django-easy-scoping-1.13.tar.gz