from news import application_factory app = application_factory() def main(): app.serve('0.0.0.0', 8080, debug=True) if __name__ == "__main__": main()