معرفی شرکت ها


django-unload-0.3.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Remove unused custom Django template tags and filters
ویژگی مقدار
سیستم عامل -
نام فایل django-unload-0.3.3
نام django-unload
نسخه کتابخانه 0.3.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Styria Digital Services
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/Styria-Digital/django-unload
آدرس اینترنتی https://pypi.org/project/django-unload/
مجوز MIT
README ****** .. image:: https://travis-ci.org/Styria-Digital/django-unload.svg?branch=master :target: https://travis-ci.org/Styria-Digital/django-unload .. image:: https://coveralls.io/repos/github/Styria-Digital/django-unload/badge.svg?branch=master :target: https://coveralls.io/github/Styria-Digital/django-unload?branch=master .. image:: https://img.shields.io/pypi/v/django-unload.svg :target: https://pypi.python.org/pypi/django-unload :alt: Version *django-unload* is a maintenance application used for performing template cleanup. It is used primarily as a command-line tool that scans the entire project or the specified app and returns the results in a tabular format. Installation ============ Requirements ------------ * Python 2.7+, 3.4+ * Django 1.8 (1.9 support will be added later) * Tabulate Installation ------------ To install the package, type: ``$ pip install django-unload`` Setup ----- Ensure that ``'unload'`` is in your project's ``INSTALLED_APPS``:: INSTALLED_APPS = [ ... 'unload', ... ] User Guide ========== *django-unload* is used as a command line tool. It can either be used to scan all template files in the project or the templates in the specified Django app. In order for the plugin to function properly, all third-pary packages located in the *INSTALLED_APPS* setting (e.g. django-debug-toolbar) should be installed using *pip*. *django-unload* uses *pip* to differentiate between the project's templates and the templates of packages located in the installed apps (e.g. admin templates). Scan the project ---------------- To scan all template files in the project, type: ``$ python manage.py find_unnecessary_loads``. Scan an app ----------- To scan a specific app, type: ``$ python manage.py find_unnecessary_loads --app <app_name>``. Output ------ The output is sent to the console. Although all template files are scanned, only templates with issues and the issues in question are displayed. The issues are displayed in two tables: 1. The first table points to duplicate loads; +--------------------+------------------------+---------------+ | Duplicate module | Duplicate tag/filter | Line number | +====================+========================+===============+ | some_module | | 10, 23 | +--------------------+------------------------+---------------+ | some_other_module | some_tag | 14, 47 | +--------------------+------------------------+---------------+ 2. The second table simply lists unutilized modules, tags and filters; +---------------------------+-------------------------+ | Unutilized module | Unutilized tag/filter | +===========================+=========================+ | some_module | some_tag | +---------------------------+-------------------------+ | some_other_module | some_filter | +---------------------------+-------------------------+ **WARNING:** If you get a *TemplateSyntaxError*, the template in question is probably outdated and/or has not been used in a while. Example Output -------------- /path/to/template.html +--------------------+------------------------+---------------+ | Duplicate module | Duplicate tag/filter | Line number | +====================+========================+===============+ | some_module | | 10, 23 | +--------------------+------------------------+---------------+ | some_other_module | some_tag | 14, 47 | +--------------------+------------------------+---------------+ +---------------------------+-------------------------+ | Unutilized module | Unutilized tag/filter | +===========================+=========================+ | some_module | some_tag | +---------------------------+-------------------------+ | some_other_module | some_filter | +---------------------------+-------------------------+


نیازمندی

مقدار نام
>=1.8,<1.9 django
==0.7.5 tabulate


نحوه نصب


نصب پکیج whl django-unload-0.3.3:

    pip install django-unload-0.3.3.whl


نصب پکیج tar.gz django-unload-0.3.3:

    pip install django-unload-0.3.3.tar.gz