Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.4 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.4 KB

Contact list application - CLI

This is a full CURD application that builds with python. It's can control with some specific commands. as like -

  1. help - to see all valid commands.
  2. add - for adding a new contact in the contact list.
  3. show - for show all saved contacts.
  4. edit <id> - for edit a specific contact.
  5. remove <id> - for remove a specific contact.
  6. clear - to remove all contacts.
  7. cls - for clear terminal
  8. exit - for exit the whole program.

All contacts are save on ./contacts/data.json

here is the UML diagram.

help - By this command it will represent you all valid commands like this

help command

add - if you would like to add a new contact to the contact list then this command for you

help command

show - for show the contact list 💻

help command

edit - for edit any specific contact run edit

help command

remove - for remove any specific contact run remove

help command

clear - remove all contacts

help command

exit - close the program

help command