tags:

views:

38

answers:

2

I wonder if anyone can help me filter this data in some way?

Here is a link to the data: http://tinyurl.com/mykv85

I'd like to create a web page to display this data but also filter it in some way.

A: 

if using PHP, start with this:

<?PHP
    $xml = simplexml_load_file('http://tinyurl.com/mykv85');
    print_r($xml);
?>
Mohammad
A: 

Read it with some kind of RSS Library (such as Feedparser).

Iterate through the items, filtering as required.

Display the results.

import feedparser

feed = feedparser.parse( "http://tinyurl.com/mykv85" )

for item in feed["items"]:
    if "foo" in item["title"]:
        print item["summary"]
DisplacedAussie