~muelnet/heybuddy/pulltimes

« back to all changes in this revision

Viewing changes to Communicator.py

  • Committer: jezra
  • Date: 2010-11-30 04:24:55 UTC
  • Revision ID: jezra@fatlappy-20101130042455-od00g9w70uultyjy
clean garbage

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
                        
122
122
        def get_statuses(self,count="20",since="0"):
123
123
                url = "%s/statuses/friends_timeline/%s.xml?count=%s&since=%s" % (self.apiroot,self.name,count,since)
124
 
                print url
 
124
                #print url
125
125
                self.process_httprequest(url,'statusesXML')
126
126
        
127
127
        def check_validity(self,name,password):
144
144
                
145
145
        def get_mentions(self,count="20",since="0"):
146
146
                url = "%s/statuses/mentions/%s.xml?count=%s&since=%s" % (self.apiroot,self.name,count,since)
147
 
                print url
 
147
                #print url
148
148
                self.process_httprequest(url,'mentionsXML') 
149
149
        
150
150
        def     get_user_info(self,name):