This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.template import Library, Node, TemplateSyntaxError, Variable, VariableDoesNotExist | |
from django.core.cache import cache | |
from django.utils.hashcompat import md5_constructor | |
import urllib2 | |
register = Library() | |
class GistNode(Node): | |
def __init__(self, gist_id, filename=None, *args): |