urest:微小的Python REST框架

时间:2024-05-26 08:52:13
【文件属性】:

文件名称:urest:微小的Python REST框架

文件大小:7KB

文件格式:ZIP

更新时间:2024-05-26 08:52:13

Python

Urest是一个基于的微型Python REST框架。 它为API开发人员提供了简单的资源抽象,并负责在幕后实施REST最佳实践。 服务器端:API开发人员指南 例子 import urest class Messages(urest.Resources): def select(self, *args, **kwargs): return [{"msg": "hello world!"}] def create(self, obj): raise urest.MethodNotAllowed def update(self, obj): raise urest.MethodNotAllowed def delete(self, obj): raise urest.MethodNotAllowed def __len__(self): return len(s


【文件预览】:
urest-master
----test.py(3KB)
----setup.py(490B)
----README.md(7KB)
----.gitignore(16B)
----urest.py(8KB)

网友评论