Example #1
0
def scrape_episode_with_dialog(title,
                               show_year,
                               year,
                               season,
                               episode,
                               imdb,
                               tvdb,
                               host=None,
                               include_disabled=False,
                               timeout=30,
                               exclude=None,
                               sort_function=None,
                               check_url=False,
                               extended=False,
                               enable_debrid=False):
    return HostedLink(title,
                      year,
                      imdb,
                      tvdb,
                      host,
                      include_disabled,
                      timeout,
                      exclude,
                      enable_debrid,
                      scraper_type='episode').scrape_episode_with_dialog(
                          show_year,
                          season,
                          episode,
                          sort_function=sort_function,
                          check_url=check_url,
                          extended=extended)
Example #2
0
def scrape_song(title,
                artist,
                host=None,
                include_disabled=False,
                timeout=30,
                exclude=None):
    return HostedLink(title, None, None, None, host, include_disabled, timeout,
                      exclude).scrape_song(title, artist)
Example #3
0
def scrape_movie(title,
                 year,
                 imdb,
                 host=None,
                 include_disabled=False,
                 timeout=30,
                 exclude=None):
    return HostedLink(title, year, imdb, None, host, include_disabled, timeout,
                      exclude).scrape_movie()
Example #4
0
def scrape_song_with_dialog(title,
                            artist,
                            host=None,
                            include_disabled=False,
                            timeout=30,
                            exclude=None,
                            sort_function=None):
    return HostedLink(title, None, None, None, host, include_disabled, timeout,
                      exclude).scrape_song_with_dialog(
                          title, artist, sort_function=sort_function)
Example #5
0
def scrape_movie_with_dialog(title,
                             year,
                             imdb,
                             host=None,
                             include_disabled=False,
                             timeout=30,
                             exclude=None,
                             sort_function=None):
    return HostedLink(
        title, year, imdb, None, host, include_disabled, timeout,
        exclude).scrape_movie_with_dialog(sort_function=sort_function)
Example #6
0
def scrape_episode(title,
                   show_year,
                   year,
                   season,
                   episode,
                   imdb,
                   tvdb,
                   host=None,
                   include_disabled=False,
                   timeout=30,
                   exclude=None):
    return HostedLink(title, year, imdb, tvdb, host, include_disabled, timeout,
                      exclude).scrape_episode(show_year, season, episode)
Example #7
0
def scrape_movie_with_dialog(title,
                             year,
                             imdb,
                             host=None,
                             include_disabled=False,
                             timeout=30,
                             exclude=None,
                             sort_function=None,
                             check_url=False,
                             extended=False,
                             enable_debrid=False):
    return HostedLink(title, year, imdb, None, host, include_disabled, timeout,
                      exclude, enable_debrid).scrape_movie_with_dialog(
                          sort_function=sort_function,
                          check_url=check_url,
                          extended=extended)
Example #8
0
def scrape_movie(title,
                 year,
                 imdb,
                 host=None,
                 include_disabled=False,
                 timeout=30,
                 exclude=None,
                 enable_debrid=False):
    return HostedLink(title,
                      year,
                      imdb,
                      None,
                      host,
                      include_disabled,
                      timeout,
                      exclude,
                      enable_debrid,
                      scraper_type='movie').scrape_movie()