コード例 #1
0
ファイル: database.py プロジェクト: CyberScions/Pronto
    def __init__(self):
        # Variables
        self.__found   = []
        self.__unique  = {}

        #Instantiations
        self.__twitter = operations()
        self.__notify  = notifications()
        self.__color   = color()
コード例 #2
0
ファイル: process.py プロジェクト: Tubbz-alt/treasure
    def __init__(self):
        notifications.__init__(self)

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

        # Instantiations variables
        self.__extract = extract()
        self.__notify = notifications()
コード例 #3
0
ファイル: twitter.py プロジェクト: CyberScions/Pronto
    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()
コード例 #4
0
ファイル: extraction.py プロジェクト: Tubbz-alt/treasure
 def __init__(self):
     self.__found = []  # Found items.
     self.__unique = {}  # Unique items.
     self.__notify = notifications()
コード例 #5
0
ファイル: enviroment.py プロジェクト: Tubbz-alt/treasure
 def __init__(self):
     self.__notify = notifications()
     self.__color = color()
コード例 #6
0
ファイル: process.py プロジェクト: CyberScions/Loot
 def __init__(self):
     self.__found = []
     self.__unique = {}
     self.__extract = extract()
     self.__export = Exportation()
     self.__notify = notifications()
コード例 #7
0
ファイル: process.py プロジェクト: CyberScions/Loot
 def __init__(self):
     self.__found = []
     self.__unique = {}
     self.__extract = extract()
     self.__export = Exportation()
     self.__notify = notifications()