I wrote about the solutions to some problems I found from programming and data analytics. They may help you on your work. Thank you.
ezoic
Friday, May 20, 2016
Python code to query all newly added videos.
BrowseNode='3003959011'
import argparse
import bottlenose
from xml.dom import minidom as xml
import amazonproduct
from urlparse import urlparse
config = {
'access_key': 'XXX',
'secret_key': 'XXX',
'associate_tag': 'XXX',
'locale':'us'
}
bb=[]
api = amazonproduct.API(cfg=config)
results1=api.item_search('Video',BrowseNode='3003959011',SearchIndex='Video',ResponseGroup='ItemAttributes')
for thing in results1:
aa=thing.DetailPageURL
asin=thing.ASIN
title=thing.ItemAttributes.Title
url=str(aa)
aa=url.split('/')
uuu=[url, asin, aa[3],title]
print uuu
Subscribe to:
Post Comments (Atom)
R is not a simple programming language, and it does better on reading excel files than python
R is not a simple programming language, and it does better on reading excel files than python . tried to read excel files to python and R. i...
No comments:
Post a Comment