Updated README and changed welcome message

main
Graham Helton 2 years ago
parent 5ef8e5816b
commit 102553cd79

@ -13,3 +13,13 @@ Currently the indexer has the following features
![](indexShow.gif) ![](indexShow.gif)
# Todo
- Add index viewer within program (Pretty print index.csv)
- Add edit feature (edit previous index entries)
- Add CSV sorting (Sort by book then alphabetical)
- Add handling for repeat entries
- Only show CSVs when asking which index you want to work on
- Add "Create new" option to csv selection option
- Create a .sansindex file in home directory that stores indexes
- Add delete option for index files
- Add "ask for book" prompt on startup

@ -22,8 +22,10 @@ tickBad = Fore.YELLOW + "[" + Fore.RED + "X" + Fore.YELLOW+ "]" + reset
awaitingInput = Fore.BLUE + "-----" + Fore.GREEN + "> " + reset awaitingInput = Fore.BLUE + "-----" + Fore.GREEN + "> " + reset
tickInfo = Fore.BLUE + "[" + yellow + "!" + Fore.BLUE + "]" + reset tickInfo = Fore.BLUE + "[" + yellow + "!" + Fore.BLUE + "]" + reset
print(tick, "Welcome to indexer") print(tick, "Welcome to Sans Terminal Indexer")
print(tick, "Setting default book number to 1") print(tick, "Setting default book number to 1")
print(tick, "Enter \"new book\" to change to the next book")
# Handle control+c # Handle control+c
def handler(signum, frame): def handler(signum, frame):
print(red, "Exiting") print(red, "Exiting")
@ -95,3 +97,24 @@ while True:
# Append row to list called index (This is a list of a lists) # Append row to list called index (This is a list of a lists)
index.append(row) index.append(row)
writeCsv() writeCsv()

Loading…
Cancel
Save