#!/usr/bin/python
# -*- coding:utf-8 -*-
import urllib
import urllib2
import cookielib
jar=cookielib.CookieJar()
opener=urllib2.build_opener(urllib2.HTTPCookieProcessor(jar))
params=urllib.urlencode({"username":"s", "password":"s", "this_is_the_login_form":"1"})
resp=opener.open('http://django-domain.com/admin/',params)
print resp.read()
Джанга мне говорит что куки у меня отключены.
Подскажите где я облажался?