What you Need? Python 2.6+ Django 1.5+ django-tastypie Sqllite3Django is Free and Open Source web application framework written in Python.Which works on MVT(model view template) Framework . Step 1: Create a model As it is MVT architecture we have to define a model.It inludes what are all field required in your api you have to declare here with proper class fields.Here i have created a model class with fields with their type . from django.db import models class Com...
Read More