Metadata-Version: 2.1
Name: bestbuyapi
Version: 2.0.0
Summary: Python Wrapper over Best Buy's REST API
Home-page: https://github.com/lv10/bestbuyapi
License: MIT
Author: lv10
Author-email: luis@lv10.me
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests (>=2.25.1,<3.0.0)
Project-URL: Repository, https://github.com/lv10/bestbuyapi
Description-Content-Type: text/markdown

---
Python Best Buy API Wrapper
---

![image](https://img.shields.io/badge/version-2.0.0-blue.svg)

[![image](https://travis-ci.com/lv10/bestbuyapi.svg?branch=master)](https://travis-ci.com/lv10/bestbuyapi)

This is a small python wrapper implementation for BestBuy API. This
implementation does not cover all the APIs from BestBuy yet. As of now,
it only supports the calls to the Products, Categories, bulk and Cover
APIs. Locations and Reviews API are in the making.

The wrapper doesn\'t assume any design requirements on the user end.
Queries to the API endpoints are done similar to what you would put in
the browser with the convenience of having python prepare for you the
query, url, and interpret the response.

NOTICE: This project is only supported by python 3.6, 3.7, 3.8. If you
need support for an older version of python3, please reach out to me.

# Features

- Query Bulk BestBuy API
- Query Stores BestBuy API (by id, currently)
- Query Products BestBuy API
- Query Categories BestBuy API
- Obtain queries result in JSON or XML

For details on how to use the Best Buy API go to:
<https://developer.bestbuy.com/documentation>

# Install

```{.sourceCode .python}
$ pip install BestBuyAPI
```

**How to use Product, Category, Store and Bulk APIs**

```{.sourceCode .python
>>> from bestbuy import BestBuyAPI
>>> bb = BestBuyAPI("YourSecretAPIKey")
>>>
>>> a_prod = bb.products.search(query="sku=9776457", format="json")
>>> a_cat = bb.category.search_by_id(category_id="abcat0011001", format="json")
>>> all_categories = bb.bulk.archive("categories", "json")}
```

# FAQ

- Is there any difference between /api.bestbuy.com/ and
  api.remix.bestbuy.com?

  A:// This is the response from BestBuy Dev department: \"There is no
  difference, they serve the same data - we just consolidated domains.
  The official url to use is api.bestbuy.com though.\"

Any questions please feel free to email me at: <luis@lv10.me>

