This project is a console application that aims to:
1.create your data model
2.manage (create, update, destroy, etc) objects via a console / command interpreter
3.store and persist objects to a file (JSON file)
To start the command line interpreter in interactive mode
run the console.py file
$ ./console.py
In order to know how to use it run the following command
(hbnb) help
Documented commands (type help <topic>):
========================================
EOF help quit
(hbnb)
To quit the command line interpreter:
(hbnb) quit
$
In non-interactive mode
$ echo "help" | ./console.py
(hbnb)
Documented commands (type help <topic>):
========================================
EOF help quit
(hbnb)
$