Friends,
Hope this will come handy for you. Using script provided here you can pull data from a external website, ready to be consumed within code.
import clr
clr.AddReference('System.Web.Extensions')
from System.Net import WebClient
# Download the results of that URL
pageContent = WebClient().DownloadString("http://spotfirelab.blogspot.com/feeds/posts/default")
# print these results
print pageContent