
WWW::Google::News::TW - Access to Google's Taiwan News Service (Not Usenet)

use WWW:Google::News::TW qw(get_news); my $results = get_news();

This module provides a couple of methods to scrape results from Google Taiwan News, returning a data structure similar to the following (which happens to be suitable to feeding into XML::RSS).
{
'社æ' => [
{
'url' => 'http://udn.com/NEWS/LIFE/LIFS2/2233728.shtml',
'headline' => 'ä¸è¯é»é
ç·è²»åæ¨ä»¥ä¸å»ºç©å
æ¶'
},
],
'ç¦é»' => [
{
'url' => 'http://www.ettoday.com/2004/09/09/153-1683695.htm',
'headline' => 'ä¾å»å義ï¼é¿éå±±éµè·¯æ¥é§éè»èµ°èµ°åå奿颍å³'
},
],
}

Scrapes http://news.google.com.tw/news?ned=ttw and returns a reference to a hash keyed on News Section, which points to an array of hashes keyed on URL and Headline.

* Add topic search

Cheng-Lung Sung <clsung@dragon2.net>

Greg McCarroll <greg@mccarroll.demon.co.uk>, Bowen Dwelle <bowen@dwelle.org> for the basis of this module

Copyright 2004 by Cheng-Lung Sung <clsung@dragon2.net>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
