Beispiel #1
0
    def __init__(self):
        # Variables
        self.__found   = []
        self.__unique  = {}

        #Instantiations
        self.__twitter = operations()
        self.__notify  = notifications()
        self.__color   = color()
Beispiel #2
0
    def __init__(self):
        notifications.__init__(self)

        # Variables
        self.__found = []  # Found items.
        self.__unique = {}  # Unique items

        # Instantiations variables
        self.__extract = extract()
        self.__notify = notifications()
Beispiel #3
0
    def __init__(self):
        #Variables
        self.__found         = [] # Items Found
        self.__newest_trends = [] # Accessed by GetNewestTrends() only.
        self.__latest_trends = [] # Accessed by PickLatestTrend() only.
        self.__stream_collection = [] # Accessed by GetUserNameFromStream() only.
        self.__collection_following_pages = [] # Accessed by CollectFollowing only.
        self.__collection_followers_pages = [] # Accessed by CollectFollowers only.
        self.__found_following = []
        self.__found_followers = []
        self.__page          = []
        self.__domain        = 'https://mobile.twitter.com'
        self.__status_link   = [] # Holds status links
        self.__unique        = {}
        self.__unique_stream_collection = {} # Accessed by GetUserNameFromStream only.

        #Instantiations
        self.color         = color()
        self.__notify      = notifications()
Beispiel #4
0
 def __init__(self):
     self.__found = []  # Found items.
     self.__unique = {}  # Unique items.
     self.__notify = notifications()
Beispiel #5
0
 def __init__(self):
     self.__notify = notifications()
     self.__color = color()
Beispiel #6
0
 def __init__(self):
     self.__found = []
     self.__unique = {}
     self.__extract = extract()
     self.__export = Exportation()
     self.__notify = notifications()
Beispiel #7
0
 def __init__(self):
     self.__found = []
     self.__unique = {}
     self.__extract = extract()
     self.__export = Exportation()
     self.__notify = notifications()