Question

Is there a good Django app out there that can take a list of tags and their frequencies of occurrence and render a tag cloud for them?

Was it helpful?

Solution

Django-tagging has helpers for generating tag clouds.

OTHER TIPS

A little self-promotion never hurt anybody, right? http://dburke.info/blog/logarithmic-tag-clouds

You could try this template tag: http://www.djangosnippets.org/snippets/140/

It works with the django-tagging app http://code.google.com/p/django-tagging/

Grab the trunk and it will work for 1.0

currently facing the same issue, i found that these links are useful for the tagging template -- so you wouldn't have to type all the template for tagging from scratch:

hopefully those can help :)

This is shameless self promotion, but I just released a very simple template tag helper to do this as I had the same need and didn't wanted to use something heavier such as Django-tagging.

It doesn't render the tag cloud tough, but it makes the necessary calculations and store the result in an attribute that can be easily referenced in HTML/CSS.

https://github.com/niconoe/django-nuages-tag

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top