home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.5)
-
- from protocols import Interface
-
- class ILinkifiedText(Interface):
- text = property(doc = 'original text')
- linkified_text = property(doc = 'linkified text')
-
-
- class ICachingURLObj(Interface):
- cache_names = property(doc = 'dict of attributes to map cach URLs as')
- cache_values = property(doc = 'completed values')
-
- def get_cache_names():
- pass
-
-
- def do_cache(cache = None):
- pass
-
-
-
- class IDisplayableTweet(ILinkifiedText, ICachingURLObj):
-
- def shouldShow(icon_type):
- pass
-
- id = property(doc = 'tweet ID number')
- created_at_in_seconds = property(doc = 'created time')
- relative_created_at = property(doc = 'human readable time')
- kind = property(doc = 'type of tweet')
-
-
- class IDisplayableStatus(IDisplayableTweet):
- source = property(doc = 'value of Status.source')
- user_screen_name = property(doc = 'user screen name')
-
-
- class IDisplayableDirect(IDisplayableTweet):
- sender_screen_name = property(doc = 'sender screen name')
- recipient_screen_name = property(doc = 'recipient screen name')
-
-
- class ITwitterFetcher(Interface):
- id = property(doc = 'some (unique, persistent) identifier')
-
- def Fetch(api):
- pass
-
-
-
- class IUserStruct(Interface):
- id = property(doc = 'user id number')
- name = property(doc = 'user display name')
- screen_name = property(doc = 'user screen name')
- location = property(doc = 'user location')
- description = property(doc = 'user description')
- profile_image_url = property(doc = 'user image')
- url = property(doc = 'user linkback?')
- protected = property(doc = 'not sure what protected means')
- followers_count = property(doc = 'number of followers')
-
-
- class ITweetStruct(Interface):
- id = property(doc = 'tweet id number')
- text = property(doc = 'text of this tweet')
- created_at = property(doc = 'twitter created at date')
-
-
- class IStatus(ITweetStruct):
- in_reply_to = property(doc = 'msg this was in reply to')
- in_reply_to_user_id = property(doc = 'user id this was in reply to')
- source = property(doc = 'method/program used to set this tweet')
- truncated = property(doc = 'whether or not this message was truncated?')
-
-
- class IDirectMessage(ITweetStruct):
- sender_id = property(doc = 'sender id')
- recipient_id = property(doc = 'recipient id')
- sender_screen_name = property(doc = 'sender screen name')
- recipient_screen_name = property(doc = 'recipient screen name')
- sender = property(doc = 'sender')
- recipient = property(doc = 'recipient')
-
-