This file contains hidden or 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
import re | |
from urllib import urlopen | |
from django.contrib.auth.models import User | |
from django.core.management.base import BaseCommand, CommandError | |
from django.template.defaultfilters import slugify | |
from dateutil.parser import parse as parse_date | |
from pyquery import PyQuery |
NewerOlder