From 428a8c4e306cfadfe7318f6a148e295fb5b430d1 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Thu, 23 May 2019 00:58:21 -0500 Subject: [PATCH] Added requirements to requirements.txt and using cmd2 --- cmd_loop_main.py | 13 +++++++++++++ requirements.txt | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 cmd_loop_main.py diff --git a/cmd_loop_main.py b/cmd_loop_main.py new file mode 100644 index 0000000..0c09afd --- /dev/null +++ b/cmd_loop_main.py @@ -0,0 +1,13 @@ +import cmd2 + + +class MainLoop(cmd2.Cmd): + """Loop for wordscape commands + + """ + + def __init__(self): + letters = None + removed = set() + + super().__init__() diff --git a/requirements.txt b/requirements.txt index 5f66382..d319fc7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,3 @@ pyspellchecker +cmd2 +npyscreen