
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Profile execution time for django views
.. image:: https://img.shields.io/pypi/v/django-view-timer.svg
None of the following settings are mandatory
|
DJANGO_VIEW_TIMER_ENABLED
Enable/Disable profiler
Default value: True
|
DJANGO_VIEW_TIMER_MIN_THRESHOLD
Disregards execution time below threshold (in milliseconds)
Default value: 20
|
DJANGO_VIEW_TIMER_WARNING_LEVEL
Set number of milliseconds for warnings
Default value: 300
|
DJANGO_VIEW_TIMER_LOG_FORMAT
Log Format
Default Value: ::
"View: {view}\tModule: {module}\tFunction: {function}\tExecution Time: {time} msecs"
.. image:: https://raw.githubusercontent.com/aledista/django-view-timer/master/screenshot.png
Install using pip
::
pip install django_view_timer
in urls.py import ::
from django_view_timer.urls import (
patterns as dvt_patterns,
url as dvt_url
)
urlpatterns = patterns('',
url(r'^$', index, name='index'),
)
dvt_urlpatterns = dvt_patterns('',
dvt_url(r'dvt_fun_base_str$', 'djangoproject.views.fun_base_test_view', name='dvt_fb_str_view'),
dvt_url(r'dvt_fun_base$', fun_base_test_view, name='dvt_fb_view'),
dvt_url(r'dvt_class_base$', ClassBaseTestView.as_view(), name='dvt_cb_view'),
)
urlpatterns += dvt_urlpatterns
FAQs
Django View Timer
We found that django-view-timer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.