Example #1
0
    def list(self, linked=False):
        evernote = self.getEvernote()

        if linked == False:
            result = evernote.findNotebooks()
        else:
            result = evernote.findLinkedNotebooks()

        out.printList(result)
Example #2
0
 def list(self):
     result = self.getEvernote().findNotebooks()
     out.printList(result)
Example #3
0
 def list(self, guid=None):
     result = self.getEvernote().findNotebooks()
     out.printList(result, showGUID=guid)
Example #4
0
 def list(self, guid=None):
     result = self.getEvernote().findNotebooks()
     out.printList(result, showGUID=guid)
Example #5
0
 def list(self):
     result = self.getEvernote().findNotebooks()
     out.printList(result, showByStep=config.DEF_MORELINESLIMIT)