-
Notifications
You must be signed in to change notification settings - Fork 325
Item Attributes (Finding API)
matecsaj edited this page Jun 13, 2020
·
2 revisions
Once you have received a response from eBay, the object "item" has several attributes that can be accessed.
if int(response.reply.paginationOutput.totalEntries) > 0:
for i in response.reply.searchResult.item:
print i.(see any below)
dir(item) lists attributes, here are some useful ones:
.condition
.country
.galleryURL
.get
.globalId
.itemId
.listingInfo
.location
.postalCode
.sellingStatus (contains: .convertedCurrentPrice, .currentPrice, .sellingState, .timeLeft)
.subtitle
.title
.viewItemURL