示例#1
0
def home(image=None):
    message = request.args.get('message', None)

    if not image:
        image = db.get_random_image()

    votes = db.get_image_votes(image)
    comments = db.get_image_comments(image)
    nsfw = db.check_nsfw(image)

    last_withdrawal_time, speakerbucks_per_minute = speakonomy.get_last_withdrawal_time(include_sbpm=True)

    return render_template(
            "home.html", 
            sounds=sb.load_sounds(score_cutoff=-50), 
            image=image,
            message=message,
            votes=votes,
            nsfw=nsfw,
            comments=comments,
            last_withdrawal_time=last_withdrawal_time,
            speakerbucks_per_minute=speakerbucks_per_minute,
            random_title=parse_and_fill_mad_lib("The !adjective !noun !adverb !verb the !noun.")
            )
def dada(sb):
    return parse_and_fill_mad_lib(
        "The !adjective !noun !adverb !verb the !noun.")
示例#3
0
    def run_filters(self, text):
    
        text = parse_and_fill_mad_lib(text)

        return text
def dada(sb):
    return parse_and_fill_mad_lib("The !adjective !noun !adverb !verb the !noun.")