Exemple #1
0
 def __init__(self,path):
   RAW_DB.__init__(self,path,"robot")
   self.table = self.db["fb_log"]
Exemple #2
0
 def __init__(self, path, table):
     RAW_DB.__init__(self, path, self.db)
     self.table = self.db[table]
     self.table_name = table
Exemple #3
0
 def __init__(self,path):
   RAW_DB.__init__(self,path,"robot")
   self.table = self.db["fb_log"]
Exemple #4
0
 def __init__(self, path):
     RAW_DB.__init__(self, path, "news")
     self.table = self.db["cnyes"]
Exemple #5
0
 def __init__(self,path,table):
   RAW_DB.__init__(self,path,self.db)
   self.table = self.db[table]
   self.table_name = table
Exemple #6
0
 def __init__(self, path, table, diaster_type, source_type):
     RAW_DB.__init__(self, path, self.db)
     self.table = self.db[table]
     self.table_name = table
     self.diaster_type = diaster_type
     self.source_type = source_type
Exemple #7
0
 def __init__(self,path):
   RAW_DB.__init__(self,path,"news")
   self.table = self.db["cnyes"]