logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 81850dd603631b7e4b0d3b22d85e9eb3ae5b1e58
parent: b3513aa3a6db41420e311bf5fc169f11564bc4e5
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Sat,  2 May 2015 13:45:38 -0400

Merge pull request #309 from dalf/twitter

[fix] twitter engine

Diffstat:

Msearx/engines/twitter.py4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/searx/engines/twitter.py b/searx/engines/twitter.py @@ -27,8 +27,8 @@ search_url = base_url + 'search?' # specific xpath variables results_xpath = '//li[@data-item-type="tweet"]' link_xpath = './/small[@class="time"]//a' -title_xpath = './/span[@class="username js-action-profile-name"]' -content_xpath = './/p[@class="js-tweet-text tweet-text"]' +title_xpath = './/span[contains(@class, "username")]' +content_xpath = './/p[contains(@class, "tweet-text")]' timestamp_xpath = './/span[contains(@class,"_timestamp")]'