Python: How to scrape amazon.com (1) with requests, lxml
It is example code to scrape it:
import requests
from lxml import html
import json
# date: 2017.12.22
# https://stackoverflow.com/a/47935432/1832058
url = "http://www.amazon.com/dp/B008HDREZ6"
headers = {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311 …