.oO SearXNG Developer Documentation Oo.
|
Functions | |
request (query, params) | |
response (resp) | |
Variables | |
dict | about |
list | categories = ['movies'] |
str | base_url = "https://www.rottentomatoes.com" |
str | results_xpath = "//search-page-media-row" |
str | url_xpath = "./a[1]/@href" |
str | title_xpath = "./a/img/@alt" |
str | thumbnail_xpath = "./a/img/@src" |
str | release_year_xpath = "concat('From ', string(./@releaseyear))" |
str | score_xpath = "concat('Score: ', string(./@tomatometerscore))" |
str | cast_xpath = "concat('Starring ', string(./@cast))" |
RottenTomatoes (movies)
searx.engines.rottentomatoes.request | ( | query, | |
params ) |
Definition at line 31 of file rottentomatoes.py.
searx.engines.rottentomatoes.response | ( | resp | ) |
Definition at line 36 of file rottentomatoes.py.
dict searx.engines.rottentomatoes.about |
Definition at line 10 of file rottentomatoes.py.
str searx.engines.rottentomatoes.base_url = "https://www.rottentomatoes.com" |
Definition at line 20 of file rottentomatoes.py.
str searx.engines.rottentomatoes.cast_xpath = "concat('Starring ', string(./@cast))" |
Definition at line 28 of file rottentomatoes.py.
list searx.engines.rottentomatoes.categories = ['movies'] |
Definition at line 18 of file rottentomatoes.py.
str searx.engines.rottentomatoes.release_year_xpath = "concat('From ', string(./@releaseyear))" |
Definition at line 26 of file rottentomatoes.py.
str searx.engines.rottentomatoes.results_xpath = "//search-page-media-row" |
Definition at line 22 of file rottentomatoes.py.
str searx.engines.rottentomatoes.score_xpath = "concat('Score: ', string(./@tomatometerscore))" |
Definition at line 27 of file rottentomatoes.py.
str searx.engines.rottentomatoes.thumbnail_xpath = "./a/img/@src" |
Definition at line 25 of file rottentomatoes.py.
str searx.engines.rottentomatoes.title_xpath = "./a/img/@alt" |
Definition at line 24 of file rottentomatoes.py.
str searx.engines.rottentomatoes.url_xpath = "./a[1]/@href" |
Definition at line 23 of file rottentomatoes.py.