This is a complete web application, integrating database storage, a back-end API, and front-end interface in a clone of AirBnB.
This team project is part of the (Alx) Software Engineering program,but unforunaltly i did it alone. it is pretty exahusting at first knowing that ,doing all thing alone ,seeing the result is rewarding It represents the first step towards building a full web application.
This first step consists of:
- a custom command-line interface for data management,
- and the base classes for the storage of this data.
Command | Examples |
---|---|
Run the console | ./console.py |
quit the console | (hbnb) quit |
Create an object | (hbnb) create |
Show an object | (hbnb) show |
Destroy an object | (hbnb) destroy |
and more.
Interactive mode(example)
$ ./console.py
(hbnb) help
Documented commands (type help <topic>):
========================================
EOF help quit
(hbnb)
(hbnb)
(hbnb) quit
$
Non-interactive mode
$ echo "help" | ./console.py
(hbnb)
Documented commands (type help <topic>):
========================================
EOF help quit
(hbnb)
$
$ cat test_help
help
$
$ cat test_help | ./console.py
(hbnb)
Documented commands (type help <topic>):
========================================
EOF help quit
(hbnb)
$
#AUTHORS
-Daniel Endale sheshbazzarr