def job(self): addFeeds.addAllFeeds() add_comments.add_comments()
def add_comments_view(request): add_comments.add_comments() r = HttpResponse(mimetype='application/json') r.write(simplejson.dumps(True)) return r