Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(2) | Derive(0) | Import(2)
src/c/h/chieftain-HEAD/converter/models.py chieftain(Download)
from django.utils.html import strip_tags as strip_html_tags from board.models import Thread, Post, File, FileType, Section, DeniedIP from board.tools import get_key, print_flush
for i, p in enumerate(self.get_posts()): self.convert_post(p) print_flush("Initialized post {}".format(i)) print "\nInitialized {} posts. Trying to convert them...".format(i)
if first_post: i = "f{}".format(i) print_flush("Converting post {}".format(i)) try: self.convert_post(p, first_post)
src/c/h/chieftain-HEAD/board/management/commands/rebuild_cache.py chieftain(Download)
from django.core.management.base import BaseCommand from board.tools import print_flush from board.models import Thread, Post