本文整理汇总了Python中notebook.Notebook.search方法的典型用法代码示例。如果您正苦于以下问题:Python Notebook.search方法的具体用法?Python Notebook.search怎么用?Python Notebook.search使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类notebook.Notebook
的用法示例。
在下文中一共展示了Notebook.search方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from notebook import Notebook [as 别名]
# 或者: from notebook.Notebook import search [as 别名]
class Menu:
'''Display a menu and respond to choices when run.'''
def __init__(self):
self.notebook = Notebook()
self.choices = {
"1": self.show_notes,
"2": self.search_notes,
"3": self.add_note,
"4": self.modify_note,
"5": self.quit
}
def display_menu(self):
print("""
Notebook Menu
1. Show all Notes
2. Search Notes
3. Add Note
4. Modify Note
5. Quit
""")
def run(self):
'''Display the menu and respond to choices.'''
while True:
self.display_menu()
choice = input("Enter an option: ")
action = self.choices.get(choice)
if action:
action()
else:
print("{0} is not a valid choice".format(choice))
def show_notes(self, notes=None):
if not notes:
notes = self.notebook.notes
for note in notes:
print("{0}: {1}\n{2}".format(
note.id, note.tags, note.memo))
def search_notes(self):
filter = input("Search for: ")
notes = self.notebook.search(filter)
self.show_notes(notes)
def add_note(self):
memo = input("Enter a memo: ")
self.notebook.new_note(memo)
print("Your note has been added.")
def modify_note(self):
id = input("Enter a note id: ")
memo = input("Enter a memo: ")
tags = input("Enter tags: ")
if memo:
self.notebook.modify_memo(id, memo)
if tags:
self.notebook.modify_tags(id, tags)
def quit(self):
print("Thank you for using your notebook today.")
sys.exit(0)
示例2: Menu
# 需要导入模块: from notebook import Notebook [as 别名]
# 或者: from notebook.Notebook import search [as 别名]
class Menu(object):
"Display a menu and respond to choices when run"
def __init__(self):
self.notebook = Notebook()
self.choices = {
"1": self.show_notes,
"2": self.search_notes,
"3": self.add_note,
"4": self.modify_note,
"5": self.quit
}
def display_menu(self):
print "1: show notes, 2: search, 3: add, 4: modify, 5: quit"
def run(self):
"Display the menu and respond to choices"
while True:
self.display_menu()
choice = raw_input("> ")
action = self.choices.get(choice)
if action:
action()
else:
print "{0} is not a valid choice".format(choice)
def show_notes(self, notes=None):
if not notes:
notes = self.notebook.notes
for note in notes:
print "{0}, {1}:\n{2}".format(
note.id, note.tags, note.memo)
def search_notes(self):
pattern = raw_input("Search for: ")
notes = self.notebook.search(pattern)
self.show_notes(notes)
def add_note(self):
memo = raw_input("Enter a memo: ")
self.notebook.new_note(memo)
print "Your note has been added."
def modify_note(self):
note_id = int(raw_input("Enter a note id: "))
if not self.notebook._find_note(note_id):
return
memo = raw_input("Enter a memo: ")
tags = raw_input("Enter tags: ")
if memo:
self.notebook.modify_memo(note_id, memo)
if tags:
self.notebook.modify_tags(note_id, tags)
def quit(self):
print "Thanks for using your notebook today."
sys.exit()
示例3: Menu
# 需要导入模块: from notebook import Notebook [as 别名]
# 或者: from notebook.Notebook import search [as 别名]
class Menu(object):
"""
display a menu and respond to user choiced to interact
with the Note and Notebook when run
"""
def __init__(self):
self.notebook = Notebook()
self.choices = {
'1': self.show_notes,
'2': self.search_notes,
'3': self.add_notes,
'4': self.modify_notes,
'5': self.quit
}
def display_menu(self):
# use triple quotes for managing multiple lines of long printing
print(
"""
Notebook Menu
1.Show All Notes
2.Search Notes
3.Add Notes
4.Modify Notes
5.Quit
"""
)
def run(self):
"""display the menu and respond to choices"""
while True:
self.display_menu()
choice = input('Enter an option: ')
# .get() allows you to provide a value as the second parameter
# and return that value if the key is missing, instead of
# throwing KeyError
action = self.choices.get(choice)
if action:
action()
else:
print( '{0} is not a valid choice'.format(choice) )
def show_notes( self, notes = None ):
"""
optional notes parameter. If it's supplied,
it displays only the filtered notes, but if it's not, it displays all notes
"""
if not notes:
notes = self.notebook.notes
for note in notes:
print( '{0}: {1}\n{2}'.format( note.id, note.tags, note.memo ) )
def search_notes(self):
filter_string = input('Search For: ')
notes = self.notebook.search(filter_string)
self.show_notes(notes)
def add_note(self):
memo = input('Enter a memo: ')
self.notebook.new_note(memo)
print('Your note has been added.')
def modify_notes(self):
id = input('Enter a note id: ')
memo = input('Enter a memo: ')
tags = input('Enter tags: ')
if memo:
self.notebook.modify_memo( id, memo )
if tags:
self.notebook.modify_tags( id, tags )
def quit(self):
print('Thank you for using your notebook today.')
# Exit the interpreter by raising SystemExit(status)
sys.exit(0)
示例4: __init__
# 需要导入模块: from notebook import Notebook [as 别名]
# 或者: from notebook.Notebook import search [as 别名]
class Menu:
"""
Represent a command-line user interface for Notebook application.
"""
def __init__(self):
self.notebook = Notebook()
self.choices = OrderedDict.fromkeys('12345')
self.choices['1'] = {'display': 'Show notes',
'handler': self.show_notes}
self.choices['2'] = {'display': 'Search notes',
'handler': self.search_notes}
self.choices['3'] = {'display': 'Add notes',
'handler': self.add_note}
self.choices['4'] = {'display': 'Modify notes',
'handler': self.modify_note}
self.choices['5'] = {'display': 'Quit',
'handler': self.quit}
def display_menu(self):
"""
Display the Notebook application's menu.
"""
print('==================')
for k, v in self.choices.items():
print(k, v.get('display'))
choice = input('What do you want to do? ')
action = self.choices.get(choice)
if action:
handler = action.get('handler')
handler()
else:
print(choice, 'is not a valid choice')
def run(self):
"""
Run the application: display the menu and respond to user's choice.
"""
while True:
self.display_menu()
pass
def show_notes(self, notes=None):
"""
Display all notes in the notebook.
"""
if notes is None:
notes = self.notebook.notes
if len(notes) > 0:
for note in notes:
print(note, '\r\n')
else:
print("No note matches.")
def search_notes(self):
"""
Search for a note in the notebook (by its content and tags).
"""
search_string = input('You want to search for ...? ')
filtered_notes = self.notebook.search(search_string)
self.show_notes(filtered_notes)
def add_note(self):
"""
Add a new note to the notebook.
"""
memo = input('Enter the memo: ')
tags = input('Enter the tags (separated by commas): ')
self.notebook.create_note(memo, tags)
print('Your note has been created.')
def modify_note(self):
"""
Modify a note in the notebook.
"""
note_id = input('Enter the note id: ')
note = self.notebook.find_note_by_id(note_id)
if note is None:
print('No note matches.')
else:
memo = input('Enter the new memo: ')
tags = input('Enter the new tags (separated by commas): ')
if memo:
note.memo = memo
if tags:
note.tags = tags
def quit(self):
"""
Exit the application.
"""
print("Thank you for using Notebook application.")
sys.exit(0)