Skip to content

Instantly share code, notes, and snippets.

@crccheck
Created November 10, 2010 16:30
Show Gist options
  • Save crccheck/671077 to your computer and use it in GitHub Desktop.
Save crccheck/671077 to your computer and use it in GitHub Desktop.
Use Django Test Client to curl a url
from django.test.client import Client
def render_url(url):
c = Client()
return c.get(url).content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment