A simple Django TemplateTag (named compute_tag_cloud) to help in the creation of tag clouds.
Project description
What is it ?
A simple Django TemplateTag (named compute_tag_cloud) to help in the creation of tag clouds.
Tiny tutorial
Install the app in your Django project
This should be as simple as
pip install django-nuages-tag
and adding ‘django_nuages_tag’ to your INSTALLED_APPS settings.
Example usage
1. Source data
Given that we have a my_favourite_tools context variable defined like this:
my_favourite_tools = [{'name': 'Python', 'interest': 30}, {'name': 'Django', 'interest': 70}, {'name': 'Ruby', 'interest': 6}]
Note: example shows a simple list, but this also works with a Django QuerySet.
2. Compute the tag cloud
We can now do:
{% compute_tag_cloud my_favourite_tools interest font_size 10 100 lin %}
compute_tag_cloud will add a font_size attribute to each element in my_favourite_tools that is contained between 10 and 100 and is representative of the value of interest. The last parameter (lin) asks to use a linear formula to compute this tag cloud. Another option is to use a logarithmic formula (use the log parameter). You should test both options, but log will probably give you better results if there is a large variation in the values you want to compute.
Our source data now looks like:
my_favourite_tools = [{'name': 'Python', 'interest': 30, 'font_size': 43.75}, {'name': 'Django', 'interest': 70, 'font_size': 100}, {'name': 'Ruby', 'interest': 6, 'font_size': 10}]
3. Render the tag cloud
This can be done very easily with the for tag and basic HTML/CSS. For example:
{% for tool in my_favourite_tools %} <span style="font-size: {{ tool.font_size }}px;"> {{ tool.name }} </span> {% endfor %}
Notes
compute_tag_cloud can be called multiple times in a row to generate multiple values. We can for example compute the font size (between 10 and 55), but also the margin (between 5 and 28) and the opacity (between 0.7 and 1) of the text with something like:
{% compute_tag_cloud my_favourite_tools interest font_size 10 55 lin %} {% compute_tag_cloud my_favourite_tools interest margin 5 28 lin %} {% compute_tag_cloud my_favourite_tools interest opacity 0.7 1 lin %} {% for tool in my_favourite_tools %} <span style="font-size: {{ tool.font_size }}px; margin: {{ tool.margin }}px; opacity: {{ tool.opacity }}">{{ tool.name }}</span> {% endfor %}
The counter parameter (interest in our example) can be an attribute, a method to be called or a dictionary key.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-nuages-tag-0.1.1.tar.gz
.
File metadata
- Download URL: django-nuages-tag-0.1.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bce7f983df4f69035c55e5fe168c71a7c427eaf1098c089ba75f361869a40e26 |
|
MD5 | 5e767e41908c844d3679f8a9b979772a |
|
BLAKE2b-256 | b3aeee228df327daa55aa1ab699b74342f6a6f3da20424734803e77609386cbb |