This is a Python-based Address Book application that allows users to manage their contacts. The application can store 100 or more entries and includes features for adding, editing, deleting, viewing, ...
address-book-python/ │ ├── app/ │ ├── __init__.py # Flask app and configuration setup │ ├── config.py # Configuration file (DB details, hidden using .env) │ ├── models.py # Database schema │ ├── ...