コード例 #1
0
 def find(self):
     list = DBHandler.find_item(noteDB.my_client, None, "notedb", "notecol")
     dbListAll = []
     dbList = []
     for dic in list:
         for i in dic.values():
             dbList.append(i)
         dbListAll.append(dbList)
         dbList = []
     return dbListAll
コード例 #2
0
 def __str__(self):
     list = DBHandler.find_item(timerDB.my_client, None, "timerdb",
                                "timercol")
     for x in list:
         print(x)
コード例 #3
0
 def __str__(self):
     list = DBHandler.find_item(noteDB.my_client, None, "notedb", "notecol")
     for x in list:
         print(x)