معرفی شرکت ها


django-mptt2-0.1.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Utilities for implementing a modified pre-order traversal tree (nested sets) in django.
ویژگی مقدار
سیستم عامل -
نام فایل django-mptt2-0.1.0
نام django-mptt2
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jonas Kiefer
ایمیل نویسنده jonas.kiefer@live.com
آدرس صفحه اصلی https://github.com/jokiefer/django-mptt2
آدرس اینترنتی https://pypi.org/project/django-mptt2/
مجوز MIT
.. image:: https://readthedocs.org/projects/django-mptt2/badge/?version=latest :target: https://django-mptt2.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status django-mptt2 ============ Based on the idea of the unmaintained `django-mptt <https://github.com/django-mptt/django-mptt>`_ package i implemented this new code base to replace it. Cause no other package fits all of my use cases, which are primary in fast reading tree's from the database, i started working on this project. There is an alternative to this package, called `django-treebeard <https://pypi.org/project/django-treebeard/>`_, which implements nested sets as well, but without a parent foreignkey. Quick-Start ----------- Install it as any other django app to your project: .. code-block:: bash $ pip install django-mptt2 Add `django-mptt2` to `INSTALLED_APPS`: .. code-block:: python INSTALLED_APPS = [ # other apps "mptt2" ] Inheritance from the abstract `mptt2.models.Node` Model: .. code-block:: python from django.db import models from mptt2.models import class Genre(Node) name = models.CharField(max_length=50, unique=True) Adding nodes: .. code-block:: python from project.models import Genre rock = Genre(name="Rock") rock.insert_at() # it will become the root node without target parameter metal = Genre(name="Metal") metal.insert_at(target=rock) # it will become the last child from rock alternative = Genre(name="Alternative") alternative.insert_at(target=rock) # it will become the last child from rock, the right sibling of metal For full usage description, please read the tutorial section of our `documentation <https://django-mptt2.rtfd.io>`_.


نیازمندی

مقدار نام
<4.3,>=4.2 django


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

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


نحوه نصب


نصب پکیج whl django-mptt2-0.1.0:

    pip install django-mptt2-0.1.0.whl


نصب پکیج tar.gz django-mptt2-0.1.0:

    pip install django-mptt2-0.1.0.tar.gz