def show_path(path):
    try:
        items, next_page, prev_page = scraper.get_path(path)
    except NotImplementedError:
        plugin.notify(msg=_('no_scraper_found'), title='Path: %s' % path)
    else:
        return __add_items(items, next_page, prev_page)
示例#2
0
def show_path(path):
    try:
        items, next_page, prev_page = scraper.get_path(path)
    except NotImplementedError:
        plugin.notify(msg=_('no_scraper_found'), title='Path: %s' % path)
    else:
        return __add_items(items, next_page, prev_page)
def show_path(path):
    items = scraper.get_path(path)
    return __add_items(items)
示例#4
0
def show_path(path):
    __log('show_path started with path: %s' % path)
    entries = scraper.get_path(path)
    __log('show_path end')
    return __add_items(entries)