def update_last_updated(request):
    Pages = Page.all().order('update_time').fetch(100)
    for Page in Pages:
        Page.put()
        logging.info("Updated %s" % (Page.searchter_id))
    return TextResponse("Success, Finished!")