在 python 中,什么是从网站返回的响应对象?
In python what is a response object returned from a website?
我正在尝试使用 etsy API,我终于能够从源代码中获取它 运行。我给了它我的钥匙,它打印出来时返回了以下内容。
<etsy._v2.EtsyV2 object at 0xb7284ccc>
但是我不知道如何处理它。 github-repo doesn't have much documentation, and the command that is suppose to follow doesn't work. I read the Etsy API 并没有找到提到的命令 getFrontFeaturedListings
,就像列出的 github。
我之前在 HTTP 响应对象上遇到过这个问题,我被告知使用 response.content 查看有关该对象的更多信息。它不适用于这个对象,所以我想知道是否有一种简单的方法来测试任何通用对象,或者至少看看这个对象包含什么?
如有疑问,您始终可以对任意 python 对象使用 dir 内置方法。这将向您显示附加到对象的方法和字段。 https://docs.python.org/3/library/functions.html#dir
无论如何,很遗憾听到图书馆的糟糕文档。上次我使用 Etsy 的 API 我只是创建了一个使用请求的小 class。由于 Etsy 在他们的开发者网站上很好地列出了所有的 URI + 文档,所以工作并不多。 https://www.etsy.com/developers/documentation/reference/favoritelisting
我正在尝试使用 etsy API,我终于能够从源代码中获取它 运行。我给了它我的钥匙,它打印出来时返回了以下内容。
<etsy._v2.EtsyV2 object at 0xb7284ccc>
但是我不知道如何处理它。 github-repo doesn't have much documentation, and the command that is suppose to follow doesn't work. I read the Etsy API 并没有找到提到的命令 getFrontFeaturedListings
,就像列出的 github。
我之前在 HTTP 响应对象上遇到过这个问题,我被告知使用 response.content 查看有关该对象的更多信息。它不适用于这个对象,所以我想知道是否有一种简单的方法来测试任何通用对象,或者至少看看这个对象包含什么?
如有疑问,您始终可以对任意 python 对象使用 dir 内置方法。这将向您显示附加到对象的方法和字段。 https://docs.python.org/3/library/functions.html#dir
无论如何,很遗憾听到图书馆的糟糕文档。上次我使用 Etsy 的 API 我只是创建了一个使用请求的小 class。由于 Etsy 在他们的开发者网站上很好地列出了所有的 URI + 文档,所以工作并不多。 https://www.etsy.com/developers/documentation/reference/favoritelisting