Django REST框架创建一个简单的Api实例讲解


Posted in Python onNovember 05, 2019

Create a Simple API Using Django REST Framework in Python

WHAT IS AN API

API stands for application programming interface. API basically helps one web application to communicate with another application.

Let's assume you are developing an android application which has feature to detect the name of a famous person in an image.

Introduce to achieve this you have 2 options:

option 1:

Option 1 is to collect the images of all the famous personalities around the world, build a machine learning/ deep learning or whatever model it is and use it in your application.

option 2:

Just use someone elses model using api to add this feature in your application.

Large companies like Google, they have their own personalities. So if we use their Api, we would not know what logic/code whey have writting inside and how they have trained the model. You will only be given an api(or an url). It works like a black box where you send your request(in our case its the image), and you get the response(which is the name of the person in that image)

Here is an example:

Django REST框架创建一个简单的Api实例讲解

PREREQUISITES

conda install jango
conda install -c conda-forge djangorestframework

Step 1

Create the django project, open the command prompt therre and enter the following command:

django-admin startproject SampleProject

Step 2

Navigate the project folder and create a web app using the command line.

python manage.py startapp MyApp

Step 3

open the setting.py and add the below lines into of code in the INSTALLED_APPS section:

'rest_framework',
'MyApp'

Step 4

Open the views.py file inside MyApp folder and add the below lines of code:

from django.shortcuts import render
from django.http import Http404
from rest_framework.views import APIView
from rest_framework.decorators import api_view
from rest_framework.response import Response
from rest_framework import status
from django.http import JsonResponse
from django.core import serializers
from django.conf import settings
import json
# Create your views here.
@api_view(["POST"])
def IdealWeight(heightdata):
 try:
  height=json.loads(heightdata.body)
  weight=str(height*10)
  return JsonResponse("Ideal weight should be:"+weight+" kg",safe=False)
 except ValueError as e:
  return Response(e.args[0],status.HTTP_400_BAD_REQUEST)

Step 5

Open urls.py file and add the below lines of code:

from django.conf.urls import url
from django.contrib import admin
from MyApp import views
urlpatterns = [
 url(r'^admin/', admin.site.urls),
 url(r'^idealweight/',views.IdealWeight)
]

Step 6

We can start the api with below commands in command prompt:

python manage.py runserver

Finally open the url:

http://127.0.0.1:8000/idealweight/

Django REST框架创建一个简单的Api实例讲解

References:

Create a Simple API Using Django REST Framework in Python

以上就是本次介绍的关于Django REST框架创建一个简单的Api实例讲解内容,感谢大家的学习和对三水点靠木的支持。

Python 相关文章推荐
python实现根据ip地址反向查找主机名称的方法
Apr 29 Python
Python socket编程实例详解
May 27 Python
详解python之多进程和进程池(Processing库)
Jun 09 Python
Python Pandas数据结构简单介绍
Jul 03 Python
python selenium 查找隐藏元素 自动播放视频功能
Jul 24 Python
python之PyQt按钮右键菜单功能的实现代码
Aug 17 Python
多个python文件调用logging模块报错误
Feb 12 Python
Python selenium文件上传下载功能代码实例
Apr 13 Python
keras 读取多标签图像数据方式
Jun 12 Python
Django model class Meta原理解析
Nov 14 Python
OpenCV-Python 实现两张图片自动拼接成全景图
Jun 11 Python
Python办公自动化PPT批量转换操作
Sep 15 Python
python中for循环变量作用域及用法详解
Nov 05 #Python
Python对Excel按列值筛选并拆分表格到多个文件的代码
Nov 05 #Python
pytorch torch.expand和torch.repeat的区别详解
Nov 05 #Python
Python socket模块ftp传输文件过程解析
Nov 05 #Python
python3.6、opencv安装环境搭建过程(图文教程)
Nov 05 #Python
Python socket模块方法实现详解
Nov 05 #Python
基于python3 的百度图片下载器的实现代码
Nov 05 #Python
You might like
在PHP中利用XML技术构造远程服务(下)
2006/10/09 PHP
新浪微博API开发简介之用户授权(PHP基础篇)
2011/09/25 PHP
PHP mysql与mysqli事务使用说明 分享
2013/08/17 PHP
php pdo连接数据库操作示例
2019/11/18 PHP
javascript 的Document属性和方法集合
2010/01/25 Javascript
js下用层来实现select的title提示属性
2010/02/23 Javascript
javascript 继承学习心得总结
2016/03/17 Javascript
jQuery+PHP实现微信转盘抽奖功能的方法
2016/05/25 Javascript
JS判断输入字符串长度实例代码(汉字算两个字符,字母数字算一个)
2016/08/02 Javascript
详解Angular中$cacheFactory缓存的使用
2016/08/19 Javascript
node.js学习之base64编码解码
2016/10/21 Javascript
Vue概念及常见命令介绍(1)
2016/12/08 Javascript
JavaScript中的遍历详解(多种遍历)
2017/04/07 Javascript
深入理解angular2启动项目步骤
2017/07/15 Javascript
jQuery实现可编辑表格并生成json结果(实例代码)
2017/07/19 jQuery
three.js中3D视野的缩放实现代码
2017/11/16 Javascript
在vue项目中集成graphql(vue-ApolloClient)
2018/09/08 Javascript
Vue项目中使用better-scroll实现一个轮播图自动播放功能
2018/12/03 Javascript
详解vue.js移动端配置flexible.js及注意事项
2019/04/10 Javascript
详解微信小程序的不同函数调用的几种方法
2019/05/08 Javascript
关于layui表单中按钮自动提交的解决方法
2019/09/09 Javascript
js 动态校验开始结束时间的实现代码
2020/05/25 Javascript
[04:44]DOTA2英雄梦之声_第12期_矮人直升机
2014/06/21 DOTA
[49:40]2018DOTA2亚洲邀请赛小组赛 A组加赛 TNC vs Newbee
2018/04/03 DOTA
二种python发送邮件实例讲解(python发邮件附件可以使用email模块实现)
2013/12/03 Python
详解Python的Twisted框架中reactor事件管理器的用法
2016/05/25 Python
Python与Java间Socket通信实例代码
2017/03/06 Python
使用XML库的方式,实现RPC通信的方法(推荐)
2017/06/14 Python
实现Python3数组旋转的3种算法实例
2020/09/16 Python
Python Charles抓包配置实现流程图解
2020/09/29 Python
电子专业毕业生自荐信
2014/05/25 职场文书
自强自立美德少年事迹材料
2014/08/16 职场文书
2014年四风问题自我剖析材料
2014/09/15 职场文书
《将心比心》教学反思
2016/02/23 职场文书
创业计划书之花店
2019/09/20 职场文书
详解MySQL集群搭建
2021/05/26 MySQL