django-daguerre

Image management and processing for Django
Download

django-daguerre Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • Stephen Burrows and Harris Lapiroff
  • Publisher web site:
  • http://django-daguerre.readthedocs.org/

django-daguerre Tags


django-daguerre Description

django-daguerre is a Django app that makes it easy to adjust images on-the-fly without slowing down your templates and without needing to generate everything ahead of time with a cron job. You don't need to make any changes to your models; it **Just Works**.InstallationYou can install the latest version of Daguerre using `pip`: pip install django-daguerreSetupEnsure that `'daguerre'` is in your project's `INSTALLED_APPS`: INSTALLED_APPS = ( 'daguerre', ... )Add the following or similar anywhere in your URLconf: urlpatterns = patterns('', url(r'^daguerre/', include('daguerre.urls')), ... )UsageThe easiest way to use Daguerre is through the `{% adjust %}` template tag: {% load daguerre %} < img src="{% adjust my_model.image.name width=128 height=256 %}" / >For more on using Daguerre, read the documentation.Product's homepage


django-daguerre Related Software