书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 5013 个相关结果.
  • 路由

    路由 路由 在上一遍文章中,我使用了 Flask 的视图函数来定义所有的路由。 Flask-RESTful 提供了一个 Resource 基础类,它能够定义一个给定 URL 的一个或者多个 HTTP 方法。例如,定义一个可以使用 HTTP 的 GET, PUT 以及 DELETE 方法的 User 资源,你的代码可以如下: from flask...
  • 使用 Flask 设计 RESTful 的认证

    使用 Flask 设计 RESTful 的认证 使用 Flask 设计 RESTful 的认证 今天我将要展示一个简单,不过很安全的方式用来保护使用 Flask 编写的 API,它是使用密码或者令牌认证的。
  • Flask 插件

    Flask 扩展插件 Flask 扩展插件 Flask 是一个简洁的 Web 框架,它提供了 Web 开发的核心功能,而丰富的扩展插件则让它变得更加强大。本章主要介绍 Flask 的扩展插件,主要有: Flask-Mail Flask-SQLAlchemy Flask-MongoEngine Flask-Cache Flask-HTTPA...
  • 解析以及验证请求

    解析以及验证请求 解析以及验证请求 当我在以前的文章中实现此服务器的时候,我自己对请求的数据进行验证。例如,在之前版本中如何处理 PUT 的: @app . route ( '/todo/api/v1.0/tasks/<int:task_id>' , methods = [ 'PUT' ]) @auth . login_required ...
  • API 文档

    API 文档 Api ReqParse Fields Inputs API 文档 flask.ext.restful.marshal(data, fields, envelope=None) Takes raw data (in the form of a dict, list, object) and a dict of fields ...
  • More examples

    More examples More examples There are more examples included in the peewee examples directory , including: Example blog app using Flask and peewee. Also see accompanying blo...
  • 使用 Python 和 Flask 设计 RESTful API

    使用 Python 和 Flask 设计 RESTful API 什么是 REST? 什么是一个 RESTful 的 web service? 设计一个简单的 web service Flask 框架的简介 使用 Python 和 Flask 实现 RESTful services 优化 web service 接口 加强 RESTful web...
  • Flask-HTTPAuth

    Flask-HTTPAuth 安装 基于密码的认证 基于 token 的认证 使用 itsdangerous 库来管理令牌 更多阅读 Flask-HTTPAuth 在 Web 应用中,我们经常需要保护我们的 api,以避免非法访问。比如,只允许登录成功的用户发表评论等。Flask-HTTPAuth 扩展可以很好地对 HTTP 的请求进行认...
  • More examples

    More examples More examples There are more examples included in the peewee examples directory , including: Example blog app using Flask and peewee. Also see accompanying blo...
  • More examples

    More examples More examples There are more examples included in the peewee examples directory , including: Example blog app using Flask and peewee. Also see accompanying blo...