コード例 #1
0
def dbseed():
    """ Expand Reddit Meme Database for a Subreddit into the Future """

    with APP.app_context():
        Simulator().dbseed()

    return None
コード例 #2
0
def main():
    APP.run(port=8080)
コード例 #3
0
from controller import APP


def main():
    APP.run(port=8080)


if __name__ == "__main__":
    APP.run()
コード例 #4
0
ファイル: build.py プロジェクト: DT021/MemeMarketCap
from controller import APP
from controller.reddit.controller import RedditController

if __name__ == "__main__":
    with APP.app_context():
        RedditController().update(full=True)
コード例 #5
0
def main():
    APP.run(threaded=False)
コード例 #6
0
from controller import APP


def main():
    APP.run(threaded=False)


if __name__ == "__main__":
    APP.run(threaded=False)