I want to be able to import the following Google Data Python Modules: atom.data, gdata.sites.client, gdata.sites.data
I've gone ahead and downloaded the files and even made changes to the PYTHONPATH variable as recommended here [link] (How to add to the pythonpath in windows 7?). Despite this I get an error stating:
    Import error No module named atom.data.
What am I doing wrong? I've placed the GData files inside the Python27 folder. 
THE CODE (JUST IN CASE):
#!C:\Python27
import atom.data
import gdata.sites.client
import gdata.sites.data
client = gdata.sites.client.SitesClient(source='i-l-v1', site='intratrial2', domain='inmobi.com')
client.ClientLogin('', '', client.source)
feed = client.GetSiteFeed()
for entry in feed.entry:
  print '%s (%s)' % (entry.title.text, entry.site_name.text)
  if entry.summary.text:
    print 'description: ' + entry.summary.text
  if entry.FindSourceLink():
    print 'this site was copied from site: ' + entry.FindSourceLink()
  print 'acl feed: %s\n' % entry.FindAclLink()
  print 'theme: ' + entry.theme.text
 
     
     
    