HTTParty 的 Python 等效项
我已经使用 HTTParty gem 在 Ruby on Rails 中创建了一个类似 API 的项目。现在我的老板希望我在 Python 中做同样的事情,但我不懂 python。所以我想知道 Python 中是否有任何相同的 gem 或默认函数生成 http 请求就像 httparty 一样简单。(记住我是 python 新手,即使在输入这个问题时我也在学习。)
I have created an API like project in Ruby on rails using HTTParty gem.Now my boss want me to do the same in Python and I don't know python.So I would like to know is there any equalent gem or default function in Python to generate http requests so easy as httparty.(Remember I am a n00b in python and I am learning even while am typing this question.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用请求。它是我在 .Net、Ruby 和 Python 之间使用过的最好的 http 处理库之一。这非常简单。
Use requests. It is one of the best http handling libraries I have used between .Net, Ruby, and Python. It is dead simple.