Example #1
0
    def test_findItemsByCategory(self):
        result = findItemsByCategory(
                        categoryId=categoryId, \
                      affiliate=affiliate, \
                      buyerPostalCode=buyerPostalCode, \
                      sortOrder=sortOrder, \
                      paginationInput = paginationInput, \
                       spectFilter=aspectFilter, \
                        dainFilter=domainFilter, \
                        iteilter=itemFilter, \
                        outpuelector=outputSelector, \
                        encodinencoding)
#        print result
        root = etree.fromstring(result)
        ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
        self.assertEqual(ack, "Success")
        #Number of Items between 0 and 10, because of paginationInput
        res_items = root.find("{http://www.ebay.com/marketplace/search/v1/services}searchResult")
        self.assertTrue(0 <= len(res_items) <= 10)
Example #2
0
    def test_findItemsByCategory(self):
        result = findItemsByCategory(
                        categoryId=categoryId, \
                        affiliate=affiliate, \
                        buyerPostalCode=buyerPostalCode, \
                        sortOrder=sortOrder, \
                        paginationInput = paginationInput, \
                        aspectFilter=aspectFilter, \
                        domainFilter=domainFilter, \
                        itemFilter=itemFilter, \
                        outputSelector=outputSelector, \
                        encoding=encoding)
#        print result
        root = etree.fromstring(result)
        ack = root.find("{http://www.ebay.com/marketplace/search/v1/services}ack").text
        self.assertEqual(ack, "Success")
        #Number of Items between 0 and 10, because of paginationInput
        res_items = root.find("{http://www.ebay.com/marketplace/search/v1/services}searchResult")
        self.assertTrue(0 <= len(res_items) <= 10)
Example #3
0
from ebay.finding import getSearchKeywordsRecommendation, findItemsByKeywords, findItemsByCategory, findItemsAdvanced, findItemsByProduct, findItemsIneBayStores, getHistograms

print getSearchKeywordsRecommendation(encoding="XML", keywords="acordian")
print findItemsByKeywords(keywords="ipod")
print findItemsByCategory(categoryId="123")
print findItemsAdvanced()
print findItemsByProduct(productId="123")
print findItemsIneBayStores()
print getHistograms(categoryId="12")