使用Python & Flask 实现RESTful Web API的实例


Posted in Python onSeptember 19, 2017

环境安装:

sudo pip install flask

Flask 是一个Python的微服务的框架,基于Werkzeug, 一个 WSGI 类库。

Flask 优点:

Written in Python (that can be an advantage);
Simple to use;
Flexible;
Multiple good deployment options;
RESTful request dispatching

RESOURCES

一个响应 /articles 和 /articles/:id的 API 服务:

from flask import Flask, url_for
app = Flask(__name__)

@app.route('/')
def api_root():
 return 'Welcome'

@app.route('/articles')
def api_articles():
 return 'List of ' + url_for('api_articles')

@app.route('/articles/<articleid>')
def api_article(articleid):
 return 'You are reading ' + articleid

if __name__ == '__main__':
 app.run()

请求:

curl http://127.0.0.1:5000/

响应:

GET /
Welcome

GET /articles
List of /articles

GET /articles/123
You are reading 123

REQUESTS

GET Parameters

from flask import request

@app.route('/hello')
def api_hello():
 if 'name' in request.args:
  return 'Hello ' + request.args['name']
 else:
  return 'Hello John Doe'

请求:

GET /hello
Hello John Doe

GET /hello?name=Luis
Hello Luis

Request Methods (HTTP Verbs)

@app.route('/echo', methods = ['GET', 'POST', 'PATCH', 'PUT', 'DELETE'])
def api_echo():
 if request.method == 'GET':
  return "ECHO: GET\n"

 elif request.method == 'POST':
  return "ECHO: POST\n"

 elif request.method == 'PATCH':
  return "ECHO: PACTH\n"

 elif request.method == 'PUT':
  return "ECHO: PUT\n"

 elif request.method == 'DELETE':
  return "ECHO: DELETE"

请求指定request type:

curl -X PATCH http://127.0.0.1:5000/echo
GET /echo
ECHO: GET

POST /ECHO
ECHO: POST

Request Data & Headers

from flask import json

@app.route('/messages', methods = ['POST'])
def api_message():

 if request.headers['Content-Type'] == 'text/plain':
  return "Text Message: " + request.data

 elif request.headers['Content-Type'] == 'application/json':
  return "JSON Message: " + json.dumps(request.json)

 elif request.headers['Content-Type'] == 'application/octet-stream':
  f = open('./binary', 'wb')
  f.write(request.data)
    f.close()
  return "Binary message written!"

 else:
  return "415 Unsupported Media Type ;)"

请求指定content type:

curl -H "Content-type: application/json" \
-X POST http://127.0.0.1:5000/messages -d '{"message":"Hello Data"}'

curl -H "Content-type: application/octet-stream" \
-X POST http://127.0.0.1:5000/messages --data-binary @message.bin

RESPONSES

from flask import Response

@app.route('/hello', methods = ['GET'])
def api_hello():
 data = {
  'hello' : 'world',
  'number' : 3
 }
 js = json.dumps(data)

 resp = Response(js, status=200, mimetype='application/json')
 resp.headers['Link'] = 'http://luisrei.com'

 return resp

查看response HTTP headers:

curl -i http://127.0.0.1:5000/hello

优化代码:

from flask import jsonify

使用

resp = jsonify(data)
resp.status_code = 200

替换

resp = Response(js, status=200, mimetype='application/json')

Status Codes & Errors

@app.errorhandler(404)
def not_found(error=None):
 message = {
   'status': 404,
   'message': 'Not Found: ' + request.url,
 }
 resp = jsonify(message)
 resp.status_code = 404

 return resp

@app.route('/users/<userid>', methods = ['GET'])
def api_users(userid):
 users = {'1':'john', '2':'steve', '3':'bill'}
 
 if userid in users:
  return jsonify({userid:users[userid]})
 else:
  return not_found()

请求:

GET /users/2
HTTP/1.0 200 OK
{
"2": "steve"
}

GET /users/4
HTTP/1.0 404 NOT FOUND
{
"status": 404,
"message": "Not Found: http://127.0.0.1:5000/users/4"
}

AUTHORIZATION

from functools import wraps

def check_auth(username, password):
 return username == 'admin' and password == 'secret'

def authenticate():
 message = {'message': "Authenticate."}
 resp = jsonify(message)

 resp.status_code = 401
 resp.headers['WWW-Authenticate'] = 'Basic realm="Example"'

 return resp

def requires_auth(f):
 @wraps(f)
 def decorated(*args, **kwargs):
  auth = request.authorization
  if not auth: 
   return authenticate()

  elif not check_auth(auth.username, auth.password):
   return authenticate()
  return f(*args, **kwargs)

 return decorated

replacing the check_auth function and using the requires_auth decorator:

@app.route('/secrets')
@requires_auth
def api_hello():
return "Shhh this is top secret spy stuff!"
HTTP basic authentication:

curl -v -u "admin:secret" http://127.0.0.1:5000/secrets

SIMPLE DEBUG & LOGGING

Debug:

app.run(debug=True)
Logging:

import logging
file_handler = logging.FileHandler('app.log')
app.logger.addHandler(file_handler)
app.logger.setLevel(logging.INFO)

@app.route('/hello', methods = ['GET'])
def api_hello():
 app.logger.info('informing')
 app.logger.warning('warning')
 app.logger.error('screaming bloody murder!')
 
 return "check your logs\n"

以上这篇使用Python & Flask 实现RESTful Web API的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python实现哈希表
Feb 07 Python
Python的加密模块md5、sha、crypt使用实例
Sep 28 Python
CentOS下使用yum安装python-pip失败的完美解决方法
Aug 16 Python
Python读取MRI并显示为灰度图像实例代码
Jan 03 Python
python: line=f.readlines()消除line中\n的方法
Mar 19 Python
Pycharm更换python解释器的方法
Oct 29 Python
Python 移动光标位置的方法
Jan 20 Python
[机器视觉]使用python自动识别验证码详解
May 16 Python
pytorch实现用CNN和LSTM对文本进行分类方式
Jan 08 Python
判断Threading.start新线程是否执行完毕的实例
May 02 Python
Pytorch通过保存为ONNX模型转TensorRT5的实现
May 25 Python
总结python多进程multiprocessing的相关知识
Jun 29 Python
python基本语法练习实例
Sep 19 #Python
基于python3 类的属性、方法、封装、继承实例讲解
Sep 19 #Python
浅谈python中列表、字符串、字典的常用操作
Sep 19 #Python
Python 文件操作的详解及实例
Sep 18 #Python
python Socket之客户端和服务端握手详解
Sep 18 #Python
Python基于time模块求程序运行时间的方法
Sep 18 #Python
Python使用当前时间、随机数产生一个唯一数字的方法
Sep 18 #Python
You might like
如何在PHP中使用Oracle数据库(3)
2006/10/09 PHP
require(),include(),require_once()和include_once()区别
2008/03/27 PHP
php小型企业库存管理系统的设计与实现代码
2011/05/16 PHP
JS版网站风格切换实例代码
2008/10/06 Javascript
jQuery侧边栏随窗口滚动实现方法
2013/03/04 Javascript
jQuery实现可收缩展开的级联菜单实例代码
2013/11/27 Javascript
jquery实现漂亮的二级下拉菜单代码
2015/08/26 Javascript
js微信支付实现代码
2016/12/22 Javascript
javascript图片预览和上传(兼容IE)
2017/03/15 Javascript
解决webpack -p压缩打包react报语法错误的方法
2017/07/03 Javascript
67 个节约开发时间的前端开发者的工具、库和资源
2017/09/12 Javascript
JS实现的简单下拉框联动功能示例
2018/05/11 Javascript
微信小程序保存多张图片的实现方法
2019/03/05 Javascript
Vue+Element-UI实现上传图片并压缩
2019/11/26 Javascript
用JS实现一个简单的打砖块游戏
2019/12/11 Javascript
js实现带搜索功能的下拉框
2020/01/11 Javascript
JavaScript实现打字游戏
2021/02/19 Javascript
深入理解python中的浅拷贝和深拷贝
2016/05/30 Python
Windows平台Python连接sqlite3数据库的方法分析
2017/07/12 Python
解决nohup重定向python输出到文件不成功的问题
2018/05/11 Python
python 通过SSHTunnelForwarder隧道连接redis的方法
2019/02/19 Python
pyqt5之将textBrowser的内容写入txt文档的方法
2019/06/21 Python
Python实现不规则图形填充的思路
2020/02/02 Python
Python利用matplotlib绘制散点图的新手教程
2020/11/05 Python
Canvas 像素处理之改变透明度的实现代码
2019/01/08 HTML / CSS
丝绸和人造花卉、植物和树木:Nearly Natural
2018/11/28 全球购物
波兰运动鞋网上商店:Distance.pl
2020/07/30 全球购物
科室工作个人总结的自我评价
2013/10/29 职场文书
市场营销专业求职信
2014/06/17 职场文书
小学国旗下的演讲稿
2014/08/28 职场文书
计算机科学与技术专业求职信
2014/09/03 职场文书
企业务虚会发言材料
2014/10/20 职场文书
质量保证书格式
2015/02/27 职场文书
2015应届毕业生求职信范文
2015/03/20 职场文书
七年级之开学家长寄语35句
2019/09/05 职场文书
SQLServer2008提示评估期已过解决方案
2021/04/12 SQL Server