我有一个 REST API,比如:
http://localhost/api/v1/foo1
http://localhost/api/v1/foo2
http://localhost/api/v1/foo3
我想要一个看起来像的python客户端
api({some kinda init code})
result1 = api.get_foo1(params)
result2 = api.post_foo2(params)
result2 = api.post_foo2(params)
我真的很懒,我想知道是否有一些现有的 python 包可以为我生成这样的 API。
我已经在 SO 中进行了一些搜索,到目前为止我发现的最佳方法是使用 python-requests 包,并编写我自己的包装器来美化它。有什么更容易的吗?