Python MarlinReST API 服务器

联合创作 · 2023-09-30 20:41

Marlin 是 Redis 上快速简单的 ReST API 服务器。

快速开始:

pip install marlin  # install marlin to the python environment.
marlin-server start  # start marlin server - port: 5000

请求方法:

METHOD URL RESPONSE DESCRIPTION
GET /api/v1/[model]?start=1&end=10 [data] 1-10 returns the 1-10 elements in the [model]
GET /api/v1/[model]/1 data item returns the element with id 1
GET /ping/ 200/500 check if service is up and connected
POST /api/v1/[model]/ [data] adds data to the model
PUT /api/v1/[model]/1/ [data] edit data
DELETE /api/v1/[model]/1 200 delete the data item
DELETE /api/v1/[model]/ - delete complete data in model
DELETE /api/v1/[model]?force=1 - delete and reset model (starts with id=1

 

浏览 6
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报