I'm parsing an atom feed using feedparser. The response headers keys sent back when I make a request are date,content-length,content-type,charset,connection,server. Here's the starting point of the feed,
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Hello</title>
<link href="http://example.com/"/>
<link rel="self" href="http://example.com/feed"/>
<link rel="search" type="application/opensearchdescription+xml" href="http://example/com/search.xml" title="Hello" />
<updated>2012-05-20T02:24:56Z</updated>
<id>abcd/</id>
<icon>abcd</icon>
<author><name>abcd</name></author>
The updated tag has the value of when the feed must have been last updated. Is it possible to send this updated value in a request header in feedparser.parse method? If yes which header would that be and then check for the response headers to see if it was updated? Any other way to find out if the feed has been updated besides this?