CoderJoshDK / WIOpy

Walmart Affiliate API Python wrapper
MIT License
11 stars 1 forks source link
api api-wrapper python python3 walmart

Python PyPI GitHub release (latest by date including pre-releases) GitHub issues GitHub Repo stars

WalmartIO Python Wrapper - WIOpy

A python wrapper for the Walmart io API. Only supports the Affiliate API for now. The project is open to contributions

Getting it

To download WIOpy, either fork this github repo or simply use Pypi via pip.

pip install WIOpy

To upgrade the package simply run

pip install WIOpy --upgrade

How to use

An example of creating a WIOpy connection One important note is that you need to pass in the private key file path.

from wiopy import WalmartIO
walmart_io = WalmartIO(
    private_key_version="1",
    private_key_filename="./WM_IO_private_key.pem",
    consumer_id='XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX',
    publisherId="XXXXXXX",
)
data = walmart_io.product_lookup('33093101')[0]

WIOpy also supports asynchronous calls. To use, everything will be the same but you must await a call and the constructed object is different.

from wiopy import AsyncWalmartIO
async_walmart_io = AsyncWalmartIO(...)
data = await async_walmart_io.product_lookup('33093101')[0]

Response Examples

When making a call to the API, an object will be returned. That object is an object version of returned JSON.
There are two ways to get info from the object:

Examples of calls

Catalog Product

Catalog Product API allows a developer to retrieve the products catalog in a paginated fashion. Catalog can be filtered by category, brand and/or any special offers like rollback, clearance etc.

data = walmart_io.catalog_product(category='3944', maxId='8342714')

A catalog response contains category, format, nextPage, totalPages, and a list of items

Post Browsed Products

The post browsed products API allows you to recommend products to someone based on their product viewing history.

data = walmart_io.post_browsed_products('54518466')

Response gives top 10 relevant items to the given id

Product lookup

There are two ways to lookup a product The first is to pass a single string in

data = walmart_io.product_lookup('33093101')[0]

or you can pass a list of strings

data = walmart_io.product_lookup('33093101, 54518466, 516833054')
data = walmart_io.product_lookup(['33093101', '54518466', '516833054'])

Remember: product_lookup always returns a list of WalmartProducts

Bulk product lookup

bulk_product_lookup is similar to product_lookup however, the bulk version does not raise errors and it is a generator.
Items are passed in as chunks of max size 20. If an error occurs on that call, the same call will be retried based on the given amount. If error still occurs, all items will be lost. But the entire call will not be lost.

data = walmart_io.bulk_product_lookup('33093101, 54518466, 516833054', amount=1, retries=3)
for items in data:
    for item in items:
        print(item)

Response gives generator of WalmartProducts
If you are unfamiliar with async generators; to properly call the async version:

data = async_walmart_io.bulk_product_lookup('33093101, 54518466, 516833054')
async for items in data:
    ...

Product Recommendation

Get recommendations based on a given product id

data = walmart_io.product_recommendation('54518466')

Response gives a list of related products

Reviews

The Reviews API gives you access to the extensive item reviews on Walmart that have been written by the users of Walmart.com

data = walmart_io.reviews('33093101')

Response gives review data

Search

Search API allows text search on the Walmart.com catalogue and returns matching items available for sale online.

# Search for tv within electronics and sort by increasing price:
data = walmart_io.search('tv', categoryId='3944', sort='price', order='ascending')

You can also add facets to your search

data = walmart_io.search('tv', filter='brand:Samsung')

The search response gives back a list of products and some meta data. It returns a facets element but there is no detail on the API about what it could return. It is a list of some unknown type

Stores

The API can return a list of closest stores near a specified location. Either zip code or lon/lat

data = walmart_io.stores(lat=29.735577, lon=-95.511747)

Taxonomy

The taxonomy service exposes the taxonomy used to categorize items on Walmart.com.
Details about params is missing from docs

data = walmart_io.taxonomy()

Trending Items

The Trending Items API is designed to give the information on what is bestselling on Walmart.com right now.

data = walmart_io.trending()

Logging

WIOpy supports logging via the logging module. Configuration of the logging module can be as simple as:

import logging

logging.basicConfig(level=logging.INFO)

License GitHub last commit