This is a simple address book that is created using Python/Django
There are a couple of ways that one can run the application,
- Download the zip file of the project directly.
- Clone the project
Once you have the source, run the following commands to see how it works
$ cd addressbook/
$ python manage.py runserver
This will start the project on default port 8000. Go to this link http://127.0.0.1:8000/contacts/ to start the app. You will have options to add and view contacts.
- Uses sqlite3 database to store the contacts.
This is just a simple application in python, so please feel free to fix bugs, improve things, provide documentation. Just send a pull request.