adding entry meta generator

This commit is contained in:
endorphant
2016-05-04 11:00:28 -04:00
parent 0cbb1836be
commit 4622af4683
3 changed files with 45 additions and 2 deletions

View File

@@ -332,11 +332,17 @@ def view_neighbors(users):
return
def view_entries():
def view_entries(entryDir=DATA):
entries = []
raw_input("\n\npress <ctrl-c> to go back home.\n\n")
for entry in core.meta():
entries.append(entry[4]+" ("+p.no("word", entry[2])+") ")
print_menu(entries)
choice = raw_input("\n\npick an entry to read, or press <ctrl-c> to go back home.\n\n")
redraw()
return
#####