I have to use RSS/ Atom feeds of blogs in my Django app. So, I thought to use Google Feed API. All the API provides is a BIG list of feeds..
If I need a post (say no 25), I need to GET the whole feeds and search every time which is redundant. So, I am thinking to run a background program which periodically performs GET and updates the feeds as a JSON file. Now, I can at least do some work efficiently!
If anyone got a better idea, please do tell me.
Can anyone tell me how to do that? It should be in sync with requests I perform on the JSON file in Django..