معرفی شرکت ها


django-compresshtml-0.1.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

HTML compressor for django
ویژگی مقدار
سیستم عامل -
نام فایل django-compresshtml-0.1.1
نام django-compresshtml
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده kamagatos
ایمیل نویسنده kamagatos@gmail.com
آدرس صفحه اصلی UNKNOWN
آدرس اینترنتی https://pypi.org/project/django-compresshtml/
مجوز UNKNOWN
django-compresshtml ===================== HTML compressor for django Why compress HTML code? ===================== When compressed HTML code, you reduce the size of data transferred from your server to your client, and your pages load faster. Installing ========== For install django-compresshtml, run on terminal: :: $ [sudo] pip install django-compresshtml Using the midleware =================== All you need to do is add ``compresshtml.middleware.CompressHtmlMiddleware`` to your ``MIDDLEWARE_CLASSES`` and enable the ``COMPRESS_HTML`` setting: MIDDLEWARE_CLASSES = ( 'compresshtml.middleware.CompressHtmlMiddleware', # other middleware classes ) COMPRESS_HTML = True This middleware should be placed before any other middleware that need to read or write the response body so that compression happens afterward. The default value for the ``COMPRESS_HTML`` setting is ``not DEBUG``. You only need to set it to ``True`` if you want to minify your HTML code when ``DEBUG`` is enabled. Keeping comments ---------------- The default behaviour of the middleware is remove all comments but conditional comments from HTML. If you want to keep your comments, set the setting ``KEEP_COMMENTS_ON_COMPRESSING`` to ``True``: KEEP_COMMENTS_ON_COMPRESSING = True Using the decorator =================== django-compresshtml also provides a decorator, that you can use only on views you want to minify the response: from compresshtml.decorators import compressed_response @compressed_response def home(request): return render_to_response('home.html') development =========== * Source hosted at `GitHub <https://github.com/kamagatos/django-compresshtml>` * Report issues on `GitHub Issues <https://github.com/kamagatos/django-compresshtml/issues>` Pull requests are very welcomed! Changelog ========= 0.1 ----- * Initial commit LICENSE ======= Unless otherwise noted, the django-compresshtml source files are distributed under the BSD-style license found in the LICENSE file.


نحوه نصب


نصب پکیج whl django-compresshtml-0.1.1:

    pip install django-compresshtml-0.1.1.whl


نصب پکیج tar.gz django-compresshtml-0.1.1:

    pip install django-compresshtml-0.1.1.tar.gz