Display Django Version
Posted: June 18th, 2010 | Author: Davo | Filed under: Django | Tags: getdjangoversion | No Comments »Ever wondered how to detect which version of Django you are actually running?
Well it is as simple as this:
>>> import django >>> django.VERSION (1, 2, 1, 'final', 0) >>> django.get_version() u'1.2.1 SVN-13348' >>>
