Utilities to test Django applications with nosetests and twill.
NoseTestCase
""" | |
============= | |
stringmethods | |
============= | |
Make possible to use all Python string methods as Django template filters. Also | |
provide custom template tag ``{% stringmethod %}`` to use methods with more | |
than one argument, like ``format``, ``count`` and other. | |
Restrictions |
#!/usr/bin/env python | |
import pprint | |
import re | |
import sys | |
try: | |
from flickrapi import FlickrAPI | |
from flickrapi.exceptions import FlickrError | |
except ImportError: |