使用 RESTful API 的 Python Piston 等效项?

发布于 2025-01-06 11:50:31 字数 150 浏览 1 评论 0原文

有没有相当于 Django Piston 的东西,但用于消费 RESTful API?

Is there something equivalent of Django Piston but for consuming RESTful API's?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不回头走下去 2025-01-13 11:50:31

REST 的美妙之处在于您不需要特殊的客户端来与 API 交互......只需任何可以通过 HTTP 进行通信的东西。

Requests 是 Python HTTP 库中当前的热点。
HTTPLib2 也非常强大

REST 的挑战在于,虽然动词是标准的(GET、POST 、PUT、DELETE),名词完全是任意的,由编写 URL 结构的人随意决定。我想这就是为什么作者经常创建 RESTFul API 的包装器/特定于语言的实现(例如 Twitter)。

The beauty of REST is that you don't NEED a special client to interact with the API...just anything that can communicate via HTTP.

Requests is the current hotness in Python HTTP Libraries.
HTTPLib2 is also very robust

The challenge with REST is that while the verbs are standard (GET, POST, PUT, DELETE), the nouns are completely arbitrary, left to the whims of whoever wrote the URL structure. I guess that's why authors often create a wrapper/language-specific implementation of the RESTFul API (eg Twitter).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文