如何在 Python REST API 中触发函数
我有一个本地 Flask REST API,它运行一些查询并返回 JSON 响应。我的想法是向 API 发送 POST 请求并触发能够更新数据库的函数。
这个想法背后的灵感来自于我们在公共云中创建资源的方式。示例:假设我们在任何公共云上创建虚拟云网络。云架构为每个模块提供了多个 API,VCN 的创建会通过对每种资源类型的 GET 或 POST 请求来触发 NAT 网关、路由表、安全列表、子网等的创建。
受到这种架构的启发,我想以一种简化和本地的方式来做到这一点。我的第一个猜测是,一旦请求到达端点,就使用多处理库来生成进程,但我不知道这是否是最佳方法或良好实践。任何人都可以告诉我如何做到这一点或者我是否走在正确的道路上。
I have a local Flask REST API that runs some queries and return JSON responses. My idea is to send a POST request to the API and trigger a function capable of updating my database.
The inspiration behind this idea is the way we create resources in a public Cloud. Example: let's say we create a Virtual Cloud Network on any public cloud. The cloud architecture has several APIs for each module and the creation of a VCN trigger the creation of NAT Gateways, Route Tables, Security Lists, Subnets and so on through a GET or POST request to each resource type.
So inspired by this architecture, I want to do this in a simplified and local manner. My first guess is to use the multiprocessing library to spawn processes as soon as a request hits the endpoint, but I don't know if this the best way or a good practice. Can anyone give me an idea on how to do this or if I am in the right path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太明白...但我可以尽力帮助你,
以下代码是相同 API 的代码,但您可以获得不同的响应,我不知道您要做什么,所以我添加了自己的示例。
i dont really understand... but i can try to help you,
the following code is a code that is the same API but you can get different responses, i dont know what are you going to do with so i added my own examples.