Skip to content

georgedimac/contacts_webapi_backend_2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contact List Backend

Python,Django backend webapi

Tested with Python 3, Django 4 , Django REST framework 3

Runs on : http://localhost:5076/

Can be used with Angular frontend demo

API Reference

API Description
GET /contact/ Get all contacts
GET, POST, PUT, DELETE /contact/{id} Get, Add, Update, Delete Contact
Parameter Type
name string
email string
phone string

Installation

# Create a virtual environment to isolate our package dependencies locally
python3 -m venv env
source env/bin/activate  # On Windows use `env\Scripts\activate`

pip3 install -r requirements.txt
python3 manage.py runserver

Usage

Runs on http://localhost:5076/

Screenshot 2022-09-18 at 13 29 43

Screenshot 2022-09-18 at 13 30 01