文件名称:python-simple-api-falcon:使用 Python 和 Falcon 的简单 API
文件大小:2KB
文件格式:ZIP
更新时间:2024-07-01 14:38:54
Python
猎鹰API 使用 Falcon 的 Python REST API 的简单演示。 关于 Falcon:一个非常快速的 Python 框架,用于构建云 API、应用后端和 WSGI 中间件。 用它 设置 安装 falcon(假设你已经准备好 Python 开发环境): $ pip install falcon 玩 运行: $ python myrestapi.py 查询一下: $ curl http://localhost:8080/containers/ $ curl -H 'Content-Type: application/json' -X PUT -d '{"image": "organization/image", "service": "myService"}' http://localhost:8080/containers/ $ curl -X DELETE
【文件预览】:
python-simple-api-falcon-master
----README.md(671B)
----myrestapi.py(3KB)