From c9c7d389c45815e1b7abd7bea7dc5093a3630ea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20P=C3=A9rez-Cerezo?= Date: Tue, 10 Oct 2017 11:45:50 +0200 Subject: Moved stuff to a module folder, preparing for setuptools --- run.py | 59 ----------------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100755 run.py (limited to 'run.py') diff --git a/run.py b/run.py deleted file mode 100755 index a4248d5..0000000 --- a/run.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/python3 - -import base -import urllib.error - -import argparse - -parser = argparse.ArgumentParser(description='Fetch menus from various sources') -# parser.add_argument('integers', metavar='N', type=int, nargs='+', -# help='an integer for the accumulator') -parser.add_argument('-r', '--restaurants', dest='rest', action='store', - metavar='LIST', - help='Comma-separated list of restaurants to fetch the menus from.') -parser.add_argument('-l', '--list-restaurants', dest='list', action='store_true', - help='get list of restaurants') - - -args = parser.parse_args() -## Load backends -from yapsy.PluginManager import PluginManager -backends = PluginManager() -backends.setPluginPlaces(["./backends"]) -backends.collectPlugins() -## Load frontends (not yet implemented) -from yapsy.PluginManager import PluginManager -frontends = PluginManager() -frontends.setPluginPlaces(["./frontends"]) -frontends.collectPlugins() - -for pluginInfo in backends.getAllPlugins(): - backends.activatePluginByName(pluginInfo.name) - pluginInfo.plugin_object.register_restaurants() -for pluginInfo in frontends.getAllPlugins(): - frontends.activatePluginByName(pluginInfo.name) - - -if args.list : - for k,i in base.foodsources.items(): - print(i.name, i.human_name) - exit() -restlist = None -if args.rest : - restlist = args.rest.split(",") -to_render = [] -for k,i in base.foodsources.items() : - if restlist and not i.name in restlist : - continue - try : - food = i.get_food(ignore_nudelauswahl=True) - to_render.append((i, food)) - # print("*"*20+i.human_name+"*"*20+"\n"+base.formt(food)) - except base.NoMenuError: - print(i.human_name + ": No menu found. This could be due to a holiday or due to an error in the script.") - except urllib.error.HTTPError as e : - print(i.human_name + ": Fetching menu failed: %s" % str(e)) - -for i in frontends.getAllPlugins(): - print(i.name) - i.plugin_object.render(to_render) -- cgit v1.2.3