bonny-art / code-crafters-tp-01

0 stars 1 forks source link

Overview

Contacts Bot is a Python-based terminal application for managing your contacts efficiently. With this bot, you can add, delete, and edit contacts, as well as keep track of birthdays and additional notes for each contact. It’s an ideal tool for anyone looking to organize their contacts directly from the command line.

Features

Installation

Prerequisites

Installation Steps

  1. Clone the repository:

    git clone https://github.com/bonny-art/code-crafters-tp-01
    cd code-crafters-tp-01

Option 1: Install as a package

  1. Install the package:

    pip install .
  2. Run the bot with the command:

    run-bot

Option 2: Run from main.py

  1. Install dependencies:

    pip install -r requirements.txt
  2. Run the bot:

    python main.py

Usage example

Adding a Contact

Add a new contact by providing the necessary details such as name, phone numbers, emails, birthday, and address:

```
python main.py
add Name
1234567890
n
example@email.com
n
address
01.01.1999
```

Listing Contacts

View all your contacts:

```
all
```

For other commands details please run 'help' command

Contributors