def rotation_changes() -> str: query = request.args.get('fq') if query is None: query = '' view = RotationChanges( *oracle.pd_rotation_changes(get_season_id()), cs.playability(), query=query) return view.page()
def rotation_speculation() -> str: query = request.args.get('fq') if query is None: query = '' view = RotationChanges(oracle.if_todays_prices(out=False), oracle.if_todays_prices( out=True), cs.playability(), speculation=True, query=query) return view.page()
def rotation_speculation() -> str: view = RotationChanges(oracle.if_todays_prices(out=False), oracle.if_todays_prices(out=True), cs.playability(), speculation=True) return view.page()
def rotation_changes() -> str: view = RotationChanges(*oracle.pd_rotation_changes(get_season_id()), cs.playability()) return view.page()
def rotation_changes(): view = RotationChanges(*oracle.last_pd_rotation_changes(), cs.playability()) return view.page()