View Single Post
Old 03-25-2013, 09:14 PM   #5
Tinkergnome
Member
Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.Tinkergnome can self-interpret dreams as they happen.
 
Posts: 14
Karma: 20650
Join Date: Mar 2013
Device: Kindle Paperwhite
have some help for you on your issues go check this thread out https://www.mobileread.com/forums/sho...06#post1353306

just have to change a little bit of code on the asin_search.py script to
Code:
import sys
from amazonproduct import API

AWS_KEY = 'your key'
SECRET_KEY = 'your key'
ASSOCIATE_TAG='your tag'

api	 = API(AWS_KEY, SECRET_KEY, "us", ASSOCIATE_TAG)

for book in api.item_search('KindleStore', Title=sys.argv[1], Author=sys.argv[2]):
	for book in book.Items.Item:
		print '%s' % (book.ASIN)
run it on all your mobi files and you should be golden
Tinkergnome is offline   Reply With Quote