Added the actual package

This commit is contained in:
Patrick Marsee 2019-02-08 13:40:21 -05:00
parent 025b572ef9
commit ff1fb5570b
4 changed files with 292 additions and 0 deletions

6
__main__.py Normal file
View file

@ -0,0 +1,6 @@
from .shell import *
print("""NOTE: this is a base shell with only the default commands.\n
If you want to actually do things with a shell, import the shell package\n
and instantiate a shell.Shell or derive a class from it.""")
s = Shell()
s.run()