Exemplo n.º 1
0
    def mainKeyword(self):
        goesStraightThere = [LL for LL in self.lists if LL.goesDirectlyTo(self)]

        if not goesStraightThere:
            return None

        return tools.byClicks(goesStraightThere)[0]
Exemplo n.º 2
0
 def getPopularLinks(self):
     return tools.byClicks(self.links)
Exemplo n.º 3
0
 def getAllLists(self):
     return tools.byClicks(self.lists.values())