twitter.py 952B

123456789101112131415161718192021222324252627282930
  1. from urlparse import urljoin
  2. from urllib import urlencode
  3. from lxml import html
  4. from cgi import escape
  5. categories = ['social media']
  6. base_url = 'https://twitter.com/'
  7. search_url = base_url+'search?'
  8. title_xpath = './/span[@class="username js-action-profile-name"]//text()'
  9. content_xpath = './/p[@class="js-tweet-text tweet-text"]//text()'
  10. def request(query, params):
  11. params['url'] = search_url + urlencode({'q': query})
  12. return params
  13. def response(resp):
  14. results = []
  15. dom = html.fromstring(resp.text)
  16. for tweet in dom.xpath('//li[@data-item-type="tweet"]'):
  17. link = tweet.xpath('.//small[@class="time"]//a')[0]
  18. url = urljoin(base_url, link.attrib.get('href'))
  19. title = ''.join(tweet.xpath(title_xpath))
  20. content = escape(''.join(tweet.xpath(content_xpath)))
  21. results.append({'url': url,
  22. 'title': title,
  23. 'content': content})
  24. return results