Skip to main content

Matplotlib in Django

The official django tutorial is very good, it stops short of displaying
data with matplotlib - which could be very handy for dsp or automated
testing. This is an extension to the tutorial. So first you must do the
official tutorial!
Complete the tutorial (as of writing this up to part 4).

Adding an image to a view

To start with we will take a static image from the hard drive and
display it on the polls index page.
Usually if it really is a static image this would be managed by the
webserver eg apache. For introduction purposes we will get django to
serve the static image. To do this we first need to change the
template.



Change the template


At the moment poll_list.html probably looks something like this:


<h1>Django test app - Polls</h1>
{% if object_list %}

<ul>
{% for object in object_list %}
<li><a href="/polls/{{object.id}}">{{ object.question }}</a></li>

{% endfor %}
</ul>
{% else %}

<p>No polls are available.</p>
{% endif %}

Change it by adding the line anywhere outside of the special "{% template tags %}"



<img src="/polls/staticImage.png" width="500px">


Now if you reload your page - you should see a placeholder
image, or nothing. If you view the source in your browser you should
see the extra line we added. If we try to view just the image, eg going
to [1] we should see a django 404 (page not found error).



Add the url for the static image into the url handler



Now we must add a line in the urls.py file to link the image with a view:
It should end up looking something like the following:


from django.conf.urls.defaults import *
from mysite.polls.models import Poll


info_dict = {
'queryset': Poll.objects.all()
}

urlpatterns = patterns('',
(r'^$', 'django.views.generic.list_detail.object_list',info_dict),
(r'^(?P<object_id>\d+)/$', 'django.views.generic.list_detail.object_detail',info_dict),
url(r'^(?P<object_id>\d+)/results/$', 'django.views.generic.list_detail.object_detail',dict(info_dict,template_name="polls/results.html"),'poll_results'),
(r'^(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),
(r'^staticImage.png$', 'mysite.polls.views.showStaticImage'),

)

This means we have to make a view called showStaticImage.



Add the view for the static image


Add a function to the views.py file as follows - replace the path with your own


def showStaticImage(request):
""" Simply return a static image as a png """

imagePath = "C:/Documents and Settings/thorneb/My Documents/Fiordland_Lake_Marian.png"
from PIL import Image
Image.init()
i = Image.open(imagePath)

response = HttpResponse(mimetype='image/png')
i.save(response,'PNG')
return response


This point it is worth noting we have imported PIL the python image library - it is not always included by default.

Now if you try reload your poll index page - you should see whatever image you choose.








Adding a dynamic image


Thats all well and good but we want to plot data, dynamically generated based on changing data.
Keeping going with the polls app - lets plot the results automatically - so the results page shows a graph.


  • Add an image tag somewhere in the results template:

    <img src="result.png">


  • Add another url clause:

    (r'^(?P<poll_id>\d+)/results/result.png$', 'mysite.polls.views.plotResults')

  • Add another new view:

def plotResults(request,poll_id):
import matplotlib
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas
from matplotlib.figure import Figure
from matplotlib.dates import DateFormatter
fig = Figure()

ax=fig.add_subplot(1,1,1)
p = get_object_or_404(Poll, pk=poll_id) # Get the poll object from django

x = matplotlib.numpy.arange(1,p.choice_set.count())
choices = p.choice_set.all()

votes = [choice.votes for choice in choices]
names = [choice.choice for choice in choices]


numTests = p.choice_set.count()
ind = matplotlib.numpy.arange(numTests) # the x locations for the groups

cols = ['red','orange','yellow','green','blue','purple','indigo']*10

cols = cols[0:len(ind)]
ax.bar(ind, votes,color=cols)


ax.set_xticks(ind + 0.5)
ax.set_xticklabels(names)


ax.set_xlabel("Choices")
ax.set_ylabel("Votes")

#ax.set_xticklabels(names)

title = u"Dynamically Generated Results Plot for poll: %s" % p.question
ax.set_title(title)


#ax.grid(True)
canvas = FigureCanvas(fig)
response = HttpResponse(content_type='image/png')

canvas.print_png(response)
return response

I may have fabricated these votes :-P


Hmm, sorry for the formating of this post - I'll try get back to it if I can find the original wiki page I made while at Tait.

Links

Official Django Site

Popular posts from this blog

Bluetooth with Python 3.3

Since about version 3.3 Python supports Bluetooth sockets natively. To put this to the test I got hold of an iRacer from sparkfun . To send to New Zealand the cost was $60. The toy has an on-board Bluetooth radio that supports the RFCOMM transport protocol. The drive  protocol is dead easy, you send single byte instructions when a direction or speed change is required. The bytes are broken into two nibbles:  0xXY  where X is the direction and Y is the speed. For example the byte 0x16 means forwards at mid-speed. I was surprised to note the car continues carrying out the last given demand! I let pairing get dealt with by the operating system. The code to create a  Car object that is drivable over Bluetooth is very straight forward in pure Python: import socket import time class BluetoothCar : def __init__ ( self , mac_address = "00:12:05:09:98:36" ): self . socket = socket . socket ( socket . AF_BLUETOOTH , socket . SOCK_STREAM , socket .

Python and Gmail with IMAP

Today I had to automatically access my Gmail inbox from Python. I needed the ability to get an unread email count, the subjects of those unread emails and then download them. I found a Gmail.py library on sourceforge, but it actually opened the normal gmail webpage and site scraped the info. I wanted something much faster, luckily gmail can now be accessed with both pop and imap. After a tiny amount of research I decided imap was the better albiet slightly more difficult protocol. Enabling imap in gmail is straight forward, it was under labs. The address for gmail's imap server is: imap.gmail.com:993 Python has a library module called imaplib , we will make heavy use of that to access our emails. I'm going to assume that we have already defined two globals - username and password. To connect and login to the gmail server and select the inbox we can do: import imaplib imap_server = imaplib . IMAP4_SSL ( "imap.gmail.com" , 993 ) imap_server . login ( use