Skip to content

Instantly share code, notes, and snippets.

@tomviner
Created January 4, 2012 17:21
Show Gist options
  • Save tomviner/1561066 to your computer and use it in GitHub Desktop.
Save tomviner/1561066 to your computer and use it in GitHub Desktop.
Print django database query with a little formatting
# eg qs = Product.objects.exclude(is_prebuy=True)
print re.sub(r'\b([A-Z]+)\b', r'\n\1\n\t', str(qs.query))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment